:root {
  --ink: #1e2320;
  --ink-2: #262b28;
  --ink-3: #323733;
  --paper: #f4f4f1;
  --white: #ffffff;
  --muted: #aeb3af;
  --muted-dark: #6e746f;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(30, 35, 32, 0.15);
  --orange: #ff6a14;
  --orange-2: #ff7d25;
  --success: #1c9c68;
  --warning: #d88a17;
  --danger: #d74d3f;
  --shell: min(1280px, calc(100vw - 64px));
  --header-h: 78px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, h1, h2, h3, h4, ul, dl, dd { margin-top: 0; }
button { cursor: pointer; }
[hidden] { display: none !important; }
::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 128px 0; overflow: hidden; }
.section-light { color: var(--ink); background: var(--paper); }

.eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  margin-right: 12px;
  vertical-align: .25em;
  background: currentColor;
}
.eyebrow.orange { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
h1 { margin-bottom: 28px; font-size: clamp(54px, 6vw, 92px); }
h1 em, h2 em { color: var(--orange); font-style: normal; }
h2 { margin-bottom: 28px; font-size: clamp(44px, 5vw, 76px); }
h3 { font-size: 29px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-button:focus-visible, .menu-button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(255, 106, 20, .42);
  outline-offset: 3px;
}
.button-orange { color: var(--white); background: var(--orange); box-shadow: 0 14px 36px rgba(255, 106, 20, .22); }
.button-orange:hover { background: var(--orange-2); box-shadow: 0 18px 40px rgba(255, 106, 20, .3); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .02); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--orange); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 11px; }
.button-large { min-height: 58px; padding-inline: 30px; }
.full-width { width: 100%; }
.text-button {
  padding: 8px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-button:hover { color: var(--orange); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(27, 31, 29, .74);
  backdrop-filter: blur(18px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 66px; background: rgba(27, 31, 29, .95); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { display: block; width: 180px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--orange); transition: right .2s ease; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s 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); }
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(27, 31, 29, .98);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu .button { width: 100%; margin-top: 18px; }

.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--header-h) + 52px) 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 36%, rgba(255, 106, 20, .13), transparent 29%),
    radial-gradient(circle at 62% 78%, rgba(255, 255, 255, .05), transparent 28%),
    linear-gradient(135deg, #1d211f 0%, #242a26 58%, #191d1b 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -27vw auto;
  width: 63vw;
  height: 63vw;
  border: 1px solid rgba(255,255,255,.06);
  transform: rotate(45deg);
}
.hero-grid-shell {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 68%);
}
.hero-angle { position: absolute; pointer-events: none; border-style: solid; transform: rotate(45deg); }
.hero-angle-a { width: 380px; height: 380px; right: -270px; top: 240px; border-width: 1px; border-color: var(--orange); opacity: .9; }
.hero-angle-b { width: 240px; height: 240px; left: -180px; bottom: 80px; border-width: 1px; border-color: rgba(255,255,255,.5); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(540px, 1.06fr); align-items: center; gap: 30px; }
.hero-copy > .eyebrow { margin-bottom: 14px; }
.hero-copy h1 { margin-bottom: 20px; font-size: clamp(52px, 5.3vw, 80px); }
.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 106, 20, .6);
  color: #ffd7c1;
  background: rgba(255, 106, 20, .08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.program-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,106,20,.12); }
.hero-lead { max-width: 690px; margin-bottom: 19px; color: rgba(255, 255, 255, .72); font-size: clamp(19px, 1.6vw, 24px); line-height: 1.45; }
.clarity-callout { display: flex; gap: 13px; max-width: 690px; padding: 17px 18px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.055); }
.clarity-callout svg { flex: 0 0 23px; width: 23px; fill: var(--orange); }
.clarity-callout p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.clarity-callout strong { color: var(--white); }
.hero-offer { display: flex; align-items: end; gap: 28px; margin: 24px 0 25px; }
.price-kicker { display: block; margin-bottom: 6px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.price-line { display: flex; align-items: end; gap: 17px; }
.price { font-family: var(--display); font-size: clamp(60px, 5.6vw, 86px); font-weight: 800; line-height: .8; letter-spacing: -.05em; }
.regular { display: flex; flex-direction: column; padding-bottom: 7px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.regular span { position: relative; width: max-content; font-size: 17px; font-weight: 700; }
.regular span::after { content: ""; position: absolute; left: -2px; right: -2px; top: 50%; height: 2px; background: var(--orange); transform: rotate(-5deg); }
.saving { display: block; margin-top: 10px; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.offer-proof { display: grid; gap: 8px; padding-bottom: 4px; }
.offer-proof span { position: relative; padding-left: 19px; color: rgba(255,255,255,.69); font-size: 13px; }
.offer-proof span::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 2px; background: var(--orange); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 17px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.hero-visual { position: relative; min-width: 0; }
.product-stage { position: relative; min-height: 680px; display: flex; align-items: center; justify-content: center; }
.product-stage::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 64%;
  top: 18%;
  left: 10%;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  transform: skewY(-4deg);
}
.product-stage::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 2%;
  bottom: 8%;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  filter: blur(24px);
}
.hero-product { position: relative; z-index: 2; width: 112%; max-width: none; margin-left: -7%; filter: drop-shadow(0 30px 30px rgba(0,0,0,.42)); transform: translateY(18px); }
.stage-orbit { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.12); transform: rotate(45deg); }
.orbit-one { width: 490px; height: 490px; right: 7%; top: 12%; }
.orbit-two { width: 360px; height: 360px; right: 18%; top: 22%; border-color: rgba(255,106,20,.5); }
.spec-chip { position: absolute; z-index: 3; padding: 8px 11px; border-left: 2px solid var(--orange); color: var(--white); background: rgba(24,28,26,.88); box-shadow: 0 10px 25px rgba(0,0,0,.25); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.chip-one { left: 0; top: 27%; }
.chip-two { right: 0; top: 19%; }
.chip-three { right: 4%; bottom: 23%; }
.visual-caption { position: relative; z-index: 4; max-width: 520px; margin: -25px auto 0; color: rgba(255,255,255,.46); font-size: 11px; text-align: center; }

.proof-strip { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #171a18; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 88px; display: flex; align-items: center; gap: 16px; padding: 16px 25px; border-right: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { color: var(--orange); font-size: 11px; letter-spacing: .1em; }
.proof-grid span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 65px; }
.section-heading-wide { align-items: start; }
.section-heading > div { max-width: 760px; }
.section-heading > p { max-width: 490px; margin-bottom: 5px; color: var(--muted-dark); font-size: 18px; }
.definition-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-dark); }
.definition-card { position: relative; min-height: 330px; padding: 45px 38px 40px; border-right: 1px solid var(--line-dark); background: var(--white); }
.definition-card:last-child { border-right: 0; }
.definition-dark { color: var(--white); background: var(--ink); }
.card-number { display: block; margin-bottom: 78px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.definition-card h3 { max-width: 300px; margin-bottom: 20px; font-size: 31px; }
.definition-card p { margin: 0; color: var(--muted-dark); }
.definition-dark p { color: rgba(255,255,255,.62); }
.definition-card::after { content: ""; position: absolute; right: 22px; top: 22px; width: 32px; height: 32px; border-top: 1px solid var(--orange); border-right: 1px solid var(--orange); }

.section-split { padding-top: 124px; background: var(--paper); }
.split-heading { margin-bottom: 58px; color: var(--ink); }
.split-heading h2 { max-width: 850px; margin-bottom: 0; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow); }
.scope-card { min-height: 720px; padding: 48px 46px; }
.scope-included { color: var(--ink); background: var(--white); }
.scope-add { color: var(--white); background: var(--ink-2); }
.scope-card header { display: flex; gap: 18px; align-items: start; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid currentColor; }
.scope-card header p { margin-bottom: 5px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.scope-card header h3 { margin: 0; font-size: 31px; }
.scope-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; color: var(--white); background: var(--orange); font-size: 25px; font-weight: 300; }
.check-list, .plain-list { list-style: none; margin: 0; padding: 0; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.check-list li { position: relative; padding: 11px 0 11px 27px; border-bottom: 1px solid rgba(30,35,32,.1); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.plain-list li { display: flex; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; }
.plain-list span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.scope-note { margin-top: 34px; padding: 22px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.05); }
.scope-note strong { display: block; margin-bottom: 5px; color: var(--orange); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.scope-note p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

.anatomy-section { background: #191d1b; }
.anatomy-section::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(35deg, transparent 48%, rgba(255,255,255,.06) 49%, transparent 50%); background-size: 120px 120px; }
.anatomy-layout { position: relative; display: grid; grid-template-columns: .55fr 1.45fr; align-items: center; gap: 54px; }
.anatomy-copy p:not(.eyebrow) { color: rgba(255,255,255,.62); font-size: 18px; }
.anatomy-copy .button { margin-top: 18px; }
.anatomy-image-wrap { padding: 18px; background: var(--white); box-shadow: 0 30px 70px rgba(0,0,0,.34); }
.anatomy-image-wrap img { width: 100%; }
.component-legend { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.component-legend div { min-height: 84px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.component-legend b { display: block; margin-bottom: 6px; color: var(--orange); font-size: 11px; letter-spacing: .1em; }
.component-legend span { color: rgba(255,255,255,.7); font-size: 12px; text-transform: uppercase; }

.build-section .section-heading .button { flex: 0 0 auto; }
.build-steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); background: var(--white); }
.build-steps article { padding: 0 24px 30px; border-right: 1px solid var(--line-dark); }
.build-steps article:last-child { border-right: 0; }
.step-visual { height: 210px; margin: 0 -24px 28px; overflow: hidden; background: #202522; }
.step-visual img { width: 100%; height: 100%; object-fit: contain; }
.build-steps article > span { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.build-steps h3 { margin: 15px 0 14px; font-size: 26px; }
.build-steps p { margin: 0; color: var(--muted-dark); font-size: 14px; }

.compatibility-section { background: linear-gradient(150deg, #202522 0%, #171a18 70%); }
.compatibility-heading { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
.compatibility-heading > div { max-width: 830px; }
.compatibility-heading > p { max-width: 440px; color: rgba(255,255,255,.58); font-size: 17px; }
.limit-cards { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 34px; border: 1px solid var(--line); }
.limit-cards article { min-height: 150px; padding: 25px; border-right: 1px solid var(--line); }
.limit-cards article:last-child { border-right: 0; }
.limit-cards span { display: block; margin-bottom: 27px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.limit-cards strong { display: block; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.limit-cards small { color: rgba(255,255,255,.48); }
.checker-shell { border: 1px solid var(--line); background: #242926; box-shadow: 0 35px 80px rgba(0,0,0,.3); }
.checker-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding: 34px 38px; border-bottom: 1px solid var(--line); }
.checker-top h3 { margin: 0; font-size: 36px; }
.checker-top .eyebrow { margin-bottom: 12px; }
.preset-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: end; }
.preset-buttons button { padding: 9px 12px; border: 1px solid var(--line); color: rgba(255,255,255,.65); background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.preset-buttons button:hover { color: var(--white); border-color: var(--orange); }
.checker-form { display: grid; grid-template-columns: .8fr 1fr 1.2fr 1.5fr; align-items: start; }
.checker-form fieldset { min-width: 0; margin: 0; padding: 30px; border: 0; border-right: 1px solid var(--line); }
.checker-form legend { padding: 0; margin-bottom: 22px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.checker-form label { display: block; margin-bottom: 16px; color: rgba(255,255,255,.68); font-size: 12px; }
.checker-form label > span { float: right; color: rgba(255,255,255,.38); font-size: 10px; text-transform: uppercase; }
.checker-form input, .checker-form select, .order-form-wrap input, .order-form-wrap select, .order-form-wrap textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 0;
  color: var(--white);
  background: rgba(0,0,0,.17);
  outline: 0;
}
.checker-form input:focus, .checker-form select:focus { border-color: var(--orange); }
.checker-form select option, .order-form-wrap select option { color: var(--ink); background: var(--white); }
.three-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.three-fields label { min-width: 0; }
.checker-submit { grid-column: 1 / -1; margin: 0 30px 30px; }
.checker-result { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 32px 38px; border-top: 1px solid var(--line); }
.result-summary { display: flex; align-items: center; gap: 18px; }
.result-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--white); background: var(--success); font-size: 26px; font-weight: 800; }
.result-summary p { margin: 0 0 5px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.result-summary h4 { margin: 0; font-size: 26px; }
.result-items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.result-item { min-height: 90px; padding: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.result-item b { display: block; margin-bottom: 8px; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.result-item span { display: block; color: rgba(255,255,255,.58); font-size: 12px; }
.result-item.pass b { color: #70d2aa; }
.result-item.warn b { color: #f1b65d; }
.result-item.fail b { color: #f47e72; }
.result-disclaimer { margin: 0; color: rgba(255,255,255,.46); font-size: 12px; }
.checker-result .button { justify-self: start; }
.checker-result.result-warn .result-icon { background: var(--warning); }
.checker-result.result-fail .result-icon { background: var(--danger); }

.dimensions-section { padding-block: 110px; }
.dimensions-layout { display: grid; grid-template-columns: 1.45fr .55fr; align-items: center; gap: 65px; }
.dimensions-visual { padding: 25px; background: var(--ink); }
.dimensions-copy dl { margin: 40px 0 24px; border-top: 1px solid var(--line-dark); }
.dimensions-copy dl div { display: flex; justify-content: space-between; gap: 25px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.dimensions-copy dt { color: var(--muted-dark); }
.dimensions-copy dd { margin: 0; font-weight: 800; }
.small-note { color: var(--muted-dark); font-size: 11px; }

.gallery-section { color: var(--ink); background: #ecece8; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 2px; }
.gallery-item { position: relative; padding: 0; border: 0; overflow: hidden; background: var(--ink); }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.7)); }
.gallery-item span { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.gallery-item:hover img { transform: scale(1.045); opacity: .85; }

.program-section { min-height: 820px; background: var(--orange); }
.program-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(135deg, transparent 47%, rgba(255,255,255,.7) 48%, transparent 49%); background-size: 150px 150px; }
.program-section::after { content: ""; position: absolute; width: 480px; height: 480px; right: -290px; top: 80px; border: 1px solid rgba(255,255,255,.5); transform: rotate(45deg); }
.program-layout { position: relative; display: grid; grid-template-columns: 1fr 430px; align-items: center; gap: 90px; }
.program-copy { color: var(--white); }
.program-copy h2 { font-size: clamp(56px, 6vw, 90px); }
.program-lead { max-width: 700px; font-size: 20px; }
.program-promise { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.38); }
.program-promise span { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.program-promise strong { font-size: 16px; }
.program-fine { margin-top: 22px; font-size: 12px; opacity: .76; }
.program-card { position: relative; padding: 42px; color: var(--white); background: var(--ink); box-shadow: 25px 25px 0 rgba(255,255,255,.18); }
.program-card::before { content: ""; position: absolute; right: -1px; top: -1px; width: 65px; height: 65px; background: var(--orange); clip-path: polygon(100% 0, 100% 100%, 0 0); }
.program-card > p { margin-bottom: 20px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.program-card > strong { display: block; font-family: var(--display); font-size: 138px; line-height: .8; }
.program-card > span { display: block; margin: 14px 0 35px; color: rgba(255,255,255,.65); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.program-card hr { margin: 0 0 20px; border: 0; border-top: 1px solid var(--line); }
.program-card > div { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.program-card b { font-family: var(--display); font-size: 25px; }
.program-card small { color: rgba(255,255,255,.5); text-transform: uppercase; }
.program-card .button { width: 100%; margin-top: 30px; }


.faq-layout { display: grid; grid-template-columns: .45fr .55fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading > p:not(.eyebrow) { color: var(--muted-dark); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 25px 55px 25px 0; list-style: none; cursor: pointer; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; right: 8px; top: 50%; width: 17px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--orange); }
.faq-list details p { max-width: 690px; margin: -5px 0 26px; color: var(--muted-dark); }

.final-cta { position: relative; padding: 110px 0; overflow: hidden; background: linear-gradient(115deg, #202522, #161917); }
.final-cta::after { content: ""; position: absolute; right: -90px; bottom: -210px; width: 430px; height: 430px; background: var(--orange); transform: rotate(45deg); }
.final-cta-lines { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(135deg, transparent 48%, var(--white) 49%, transparent 50%); background-size: 120px 120px; }
.final-cta-inner { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.final-cta h2 { margin-bottom: 22px; font-size: clamp(60px, 7vw, 104px); }
.final-cta p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.58); font-size: 18px; }
.final-price { display: flex; flex-direction: column; align-items: end; min-width: 310px; }
.final-price > span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; }
.final-price > span s { color: var(--white); font-size: 17px; }
.final-price > strong { margin: 8px 0 22px; font-family: var(--display); font-size: 90px; line-height: .8; letter-spacing: -.05em; }

.site-footer { padding: 76px 0 22px; background: #121513; }
.footer-main { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; padding-bottom: 60px; }
.footer-brand img { width: 210px; }
.footer-brand p { margin-top: 28px; color: rgba(255,255,255,.45); font-family: var(--display); font-size: 23px; font-weight: 700; line-height: 1.05; letter-spacing: .06em; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links b { margin-bottom: 8px; color: var(--orange); font-size: 10px; letter-spacing: .16em; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.58); font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(255,255,255,.32); font-size: 10px; }
.footer-bottom span:last-child { text-align: right; }

.sticky-buy {
  position: fixed;
  z-index: 950;
  left: 50%;
  bottom: 18px;
  width: min(620px, calc(100vw - 28px));
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(25,29,27,.95);
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.sticky-buy.visible { transform: translate(-50%, 0); opacity: 1; }
.sticky-buy > div { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.sticky-buy span { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 800; letter-spacing: .12em; white-space: nowrap; }
.sticky-buy strong { font-family: var(--display); font-size: 26px; }
.sticky-buy s { color: rgba(255,255,255,.35); font-size: 12px; }
.sticky-buy .button { margin-left: auto; }

.modal-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(9px);
  overflow: auto;
}
.modal { position: relative; width: min(1120px, 100%); max-height: calc(100vh - 48px); overflow: auto; color: var(--ink); background: var(--paper); box-shadow: 0 35px 90px rgba(0,0,0,.46); }
.modal-close { position: absolute; z-index: 3; right: 16px; top: 14px; width: 42px; height: 42px; border: 1px solid rgba(30,35,32,.18); color: var(--ink); background: var(--white); font-size: 27px; line-height: 1; }
.modal-close:hover { color: var(--white); background: var(--orange); border-color: var(--orange); }
.order-modal { display: grid; grid-template-columns: .78fr 1.22fr; }
.order-product { padding: 52px 42px; color: var(--white); background: var(--ink); }
.order-product h2 { margin-bottom: 18px; font-size: 47px; }
.order-product > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.order-summary-card { display: grid; grid-template-columns: 120px 1fr; gap: 17px; align-items: center; margin: 35px 0; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.order-summary-card img { width: 120px; }
.order-summary-card div { display: flex; flex-direction: column; }
.order-summary-card strong { font-size: 15px; text-transform: uppercase; }
.order-summary-card span { margin: 5px 0 12px; color: rgba(255,255,255,.5); font-size: 12px; }
.order-summary-card b { color: var(--orange); font-family: var(--display); font-size: 25px; }
.order-product ul { list-style: none; margin: 0; padding: 0; }
.order-product li { position: relative; padding: 9px 0 9px 24px; border-bottom: 1px solid var(--line); color: rgba(255,255,255,.68); font-size: 13px; }
.order-product li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); }
.order-form-wrap { padding: 52px 52px 42px; background: var(--paper); }
.order-form-wrap form > label, .form-row label { display: block; margin-bottom: 16px; color: #555b57; font-size: 12px; font-weight: 700; }
.order-form-wrap input, .order-form-wrap select, .order-form-wrap textarea { color: var(--ink); border-color: rgba(30,35,32,.2); background: var(--white); }
.order-form-wrap textarea { min-height: 100px; padding-top: 12px; resize: vertical; }
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.checkbox-label { display: flex !important; align-items: start; gap: 11px; font-weight: 400 !important; }
.checkbox-label input { flex: 0 0 18px; width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--orange); }
.order-total { display: flex; align-items: baseline; justify-content: space-between; margin: 24px 0 18px; padding: 18px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.order-total span { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.order-total strong { font-family: var(--display); font-size: 37px; }
.order-success { padding-top: 30px; text-align: center; }
.success-mark { display: grid; place-items: center; width: 65px; height: 65px; margin: 0 auto 25px; border-radius: 50%; color: var(--white); background: var(--success); font-size: 32px; }
.order-success h3 { margin-bottom: 15px; font-size: 34px; }
.order-success > p:not(.eyebrow) { color: var(--muted-dark); }
.order-success pre { max-height: 230px; overflow: auto; padding: 18px; text-align: left; white-space: pre-wrap; color: var(--ink); background: var(--white); border: 1px solid var(--line-dark); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.success-actions { display: flex; justify-content: center; gap: 10px; margin: 22px 0; }

.lightbox-backdrop { background: rgba(0,0,0,.88); }
.lightbox { position: relative; width: min(1400px, 100%); max-height: calc(100vh - 48px); display: flex; flex-direction: column; align-items: center; }
.lightbox .modal-close { position: fixed; color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(0,0,0,.4); }
.lightbox img { max-width: 100%; max-height: calc(100vh - 100px); object-fit: contain; }
.lightbox p { margin: 12px 0 0; color: rgba(255,255,255,.65); font-size: 12px; }

.toast { position: fixed; z-index: 3000; left: 50%; bottom: 30px; min-width: 240px; padding: 14px 18px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); transform: translateX(-50%); text-align: center; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay-1 { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 42px, 1120px); }
  .desktop-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr .95fr; }
  .product-stage { min-height: 610px; }
  .hero-product { width: 120%; margin-left: -15%; }
  .hero-offer { flex-direction: column; align-items: start; gap: 15px; }
  .offer-proof { grid-template-columns: repeat(3, auto); }
  .checker-form { grid-template-columns: 1fr 1fr; }
  .checker-form fieldset:nth-child(2) { border-right: 0; }
  .checker-form fieldset:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .result-items { grid-template-columns: repeat(3, 1fr); }
  .component-legend { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 1; }
}

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .desktop-nav, .header-actions > .text-button { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 68px); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-copy h1 { max-width: 800px; }
  .hero-visual { margin-top: 15px; }
  .product-stage { min-height: 650px; }
  .hero-product { width: 100%; margin-left: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 95px; }
  .section-heading, .compatibility-heading { align-items: start; flex-direction: column; gap: 18px; }
  .definition-grid { grid-template-columns: 1fr; }
  .definition-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .definition-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 42px; }
  .section-split { background: var(--paper); }
  .included-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: auto; }
  .anatomy-layout { grid-template-columns: 1fr; }
  .anatomy-copy { max-width: 720px; }
  .component-legend { grid-template-columns: repeat(3, 1fr); }
  .build-steps { grid-template-columns: 1fr 1fr; }
  .build-steps article:nth-child(2) { border-right: 0; }
  .build-steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .limit-cards { grid-template-columns: repeat(3, 1fr); }
  .limit-cards article:nth-child(3) { border-right: 0; }
  .limit-cards article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .dimensions-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .program-layout { grid-template-columns: 1fr; }
  .program-card { max-width: 500px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  .final-cta-inner { align-items: start; flex-direction: column; }
  .final-price { align-items: start; }
  .footer-main { grid-template-columns: 1fr; }
  .order-modal { grid-template-columns: 1fr; }
  .order-product { padding-right: 70px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 30px); }
  body { font-size: 15px; }
  .site-header .button-small { display: none; }
  .brand { width: 150px; }
  .hero { padding-bottom: 62px; }
  .program-badge { max-width: 100%; font-size: 9px; }
  h1 { font-size: clamp(42px, 11.8vw, 50px); letter-spacing: -.055em; }
  .hero-copy h1 { font-size: clamp(42px, 11.8vw, 50px); }
  .hero-copy h1 em { display: block; font-size: .96em; }
  h2 { font-size: clamp(40px, 12vw, 59px); }
  .hero-lead { font-size: 18px; }
  .hero-offer { margin-top: 30px; }
  .offer-proof { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .product-stage { min-height: 460px; }
  .product-stage::before { height: 54%; }
  .hero-product { width: 110%; max-width: none; margin-left: -5%; }
  .spec-chip { font-size: 8px; }
  .chip-one { left: -5px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .section { padding-block: 76px; }
  .section-heading { margin-bottom: 42px; }
  .definition-card { padding: 34px 28px; }
  .scope-card { padding: 35px 25px; }
  .check-list { grid-template-columns: 1fr; }
  .component-legend { grid-template-columns: 1fr 1fr; }
  .build-steps { grid-template-columns: 1fr; }
  .build-steps article { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .build-steps article:last-child { border-bottom: 0; }
  .limit-cards { grid-template-columns: 1fr 1fr; }
  .limit-cards article { border-bottom: 1px solid var(--line); }
  .limit-cards article:nth-child(odd) { border-right: 1px solid var(--line); }
  .limit-cards article:nth-child(even) { border-right: 0; }
  .limit-cards article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .checker-top { align-items: start; flex-direction: column; padding: 27px 22px; }
  .preset-buttons { justify-content: start; }
  .checker-form { grid-template-columns: 1fr; }
  .checker-form fieldset { padding: 25px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .three-fields { grid-template-columns: 1fr; }
  .checker-submit { margin: 22px; }
  .checker-result { padding: 28px 22px; }
  .result-summary { align-items: start; }
  .result-items { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .program-section { padding-top: 80px; }
  .program-promise { grid-template-columns: 1fr; gap: 8px; }
  .program-card { padding: 34px 27px; box-shadow: 13px 13px 0 rgba(255,255,255,.18); }
  .program-card > strong { font-size: 110px; }
  .final-price > strong { font-size: 72px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
  .sticky-buy { bottom: 8px; }
  .sticky-buy span, .sticky-buy s { display: none; }
  .sticky-buy > div { flex: 0 0 auto; }
  .sticky-buy strong { font-size: 23px; }
  .modal-backdrop { padding: 0; place-items: stretch; }
  .modal { width: 100%; max-height: 100vh; min-height: 100vh; }
  .order-product { padding: 70px 24px 32px; }
  .order-product h2 { font-size: 41px; }
  .order-form-wrap { padding: 34px 24px; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .order-summary-card { grid-template-columns: 90px 1fr; }
  .order-summary-card img { width: 90px; }
  .success-actions { flex-direction: column; }
}

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

/* --------------------------------------------------------------------------
   BUILDERS EDITION 2.0 — responsive and multilingual refinements
   -------------------------------------------------------------------------- */

html, body { max-width: 100%; }
body { overflow-x: hidden; }
img { height: auto; }

.sr-only {
  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;
}

h1, h2, h3, h4,
.button,
.program-badge,
.proof-grid span,
.desktop-nav a {
  text-wrap: balance;
  hyphens: auto;
}

.button {
  height: auto;
  padding-block: 14px;
  line-height: 1.18;
  text-align: center;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-select::after {
  content: "";
  position: absolute;
  right: 11px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.75);
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.language-select select {
  min-height: 42px;
  min-width: 96px;
  padding: 0 31px 0 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  color: var(--white);
  background: rgba(255,255,255,.04);
  appearance: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.language-select select:hover { border-color: rgba(255,255,255,.48); }
.language-select option { color: var(--ink); background: var(--white); }


.visual-caption { margin-top: 18px; }

/* The component diagram is 1800 × 954. It is never assigned an artificial
   height. On small screens it becomes a horizontally scrollable diagram. */
.anatomy-media { min-width: 0; }
.anatomy-image-wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.anatomy-image-wrap img,
.dimensions-visual img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}
.panorama-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--orange) rgba(30,35,32,.14);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.panorama-scroll::-webkit-scrollbar { height: 9px; }
.panorama-scroll::-webkit-scrollbar-track { background: rgba(30,35,32,.12); }
.panorama-scroll::-webkit-scrollbar-thumb { background: var(--orange); }
.scroll-hint {
  display: none;
  margin: 12px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.plain-list li > span:first-child {
  flex: 0 0 24px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.plain-list li > span:last-child {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
}

.step-visual img,
.order-summary-card img {
  object-fit: contain;
}
.order-summary-card img {
  aspect-ratio: 1.08 / 1;
  padding: 5px;
  background: var(--white);
}

/* Make controls comfortable on touch screens and prevent iOS input zoom. */
input, select, textarea { font-size: 16px; }

@media (max-width: 1240px) {
  .header-check { display: none; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 10px; letter-spacing: .1em; }
  .brand { width: 165px; }
}

@media (max-width: 1080px) {
  :root { --header-h: 70px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: block; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-copy h1 { max-width: 850px; }
  .hero-visual { margin-top: 12px; }
  .product-stage { min-height: 610px; }
  .product-canvas { width: min(100%, 760px); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 30px); }

  .site-header .header-buy { display: none; }
  .header-inner { gap: 10px; }
  .brand { width: 138px; }
  .header-actions { gap: 7px; }
  .language-select select {
    min-width: 88px;
    min-height: 40px;
    padding-left: 10px;
    padding-right: 26px;
    font-size: 10px;
    letter-spacing: .04em;
  }
  .language-select::after { right: 9px; }
  .menu-button { width: 40px; height: 40px; padding: 8px; }

  .hero { padding-top: calc(var(--header-h) + 48px); }
  .product-stage {
    min-height: 0;
    padding: 26px 0 18px;
  }
  .product-stage::before {
    width: 94%;
    height: 67%;
    top: 16%;
    left: 3%;
  }
  .product-stage::after { left: 8%; right: 8%; bottom: 3%; }
  .product-canvas {
    width: 100%;
    padding: 7px;
    transform: none;
  }
  .hero-product { width: 100%; max-width: 100%; margin: 0; }
  .visual-caption { max-width: 92%; margin-top: 13px; }
  .spec-chip { padding: 6px 8px; }
  .chip-one { left: -3px; top: 24%; }
  .chip-two { right: -3px; top: 14%; }
  .chip-three { right: 1%; bottom: 16%; }

  .anatomy-image-wrap { padding: 10px; }
  .panorama-scroll img {
    width: 760px;
    min-width: 760px;
    max-width: none;
  }
  .scroll-hint { display: block; }

  .component-legend span { text-transform: none; }
  .section-heading .button { width: 100%; }
}

@media (max-width: 430px) {
  :root { --shell: calc(100% - 24px); }
  .brand { width: 120px; }
  .language-select select { min-width: 81px; }
  .program-badge { letter-spacing: .1em; }
  .clarity-callout { padding: 15px; }
  .price-line { gap: 11px; }
  .price { font-size: 60px; }
  .regular span { font-size: 15px; }
  .sticky-buy { width: calc(100vw - 16px); gap: 8px; padding-left: 13px; }
  .sticky-buy .button { padding-inline: 14px; font-size: 10px; }
}

.regular > span:last-child::after { display: none; }
.regular > span:last-child { font-size: 11px; font-weight: 500; }

.checker-form label > span:first-child {
  float: none;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  text-transform: none;
}
.checker-form label > span:not(:first-child) {
  float: right;
  margin-left: 8px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  text-transform: uppercase;
}


/* Final 2.0 asset and layout corrections ---------------------------------- */

/* The badge has two spans: the dot and the text. Only the dot is fixed-size. */
.program-badge > span:first-child {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,106,20,.12);
}
.program-badge > span:last-child {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Use the corrected transparent product cut-out. The page background shows
   through the actual openings, while the monitor reflections stay intact. */
.product-stage::before {
  width: 86%;
  height: 72%;
  top: 13%;
  left: 7%;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 52% 44%, rgba(255,106,20,.13), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  transform: skewY(-3deg);
}
.product-canvas {
  width: min(108%, 760px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.hero-product {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 32px 32px rgba(0,0,0,.48));
  transform: none;
}
.visual-caption { margin-top: 6px; }

.order-summary-card img {
  aspect-ratio: auto;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.28));
}

@media (max-width: 760px) {
  .product-stage::before {
    width: 96%;
    height: 74%;
    top: 11%;
    left: 2%;
  }
  .product-canvas { width: 106%; max-width: none; margin-inline: -3%; }
  .visual-caption { margin-top: 3px; }
}

@media (max-width: 760px) { .hero-angle { display: none; } }
