:root {
  --ink: #090a0a;
  --ink-soft: #181a19;
  --paper: #f4f5f0;
  --white: #fff;
  --titanium: #9a9f9b;
  --line: rgba(9, 10, 10, .16);
  --energy: #e1fe01;
  --sans: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1440px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-200%); background: var(--energy); color: var(--ink); padding: 10px 16px; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--energy); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled, body:not(.home) .site-header { background: rgba(9, 10, 10, .92); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 78px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.wordmark img { width: 72px; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 52px); }
.primary-nav a, .language-switcher summary, .language-switcher a, .hs-menu-toggle {
  font-family: var(--mono); font-size: 12px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
}
.primary-nav a { position: relative; padding-block: 28px; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 2px; background: var(--energy); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.language-switcher { position: relative; }
.language-switcher summary { display: flex; min-width: 44px; min-height: 44px; padding: 9px 13px; align-items: center; justify-content: center; cursor: pointer; list-style: none; border: 1px solid rgba(255,255,255,.45); }
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher__panel { position: absolute; top: calc(100% + 10px); right: 0; display: grid; min-width: 96px; padding: 8px; color: var(--ink); background: var(--white); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.language-switcher__panel a { padding: 9px 11px; }
.language-switcher__panel a[aria-current="page"], .language-switcher__panel a:hover { background: var(--energy); }
.hs-menu-toggle { display: none; color: var(--white); background: none; border: 0; }

.hero { position: relative; min-height: 800px; height: 100svh; max-height: 1040px; color: var(--white); overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; background: url("../images/hypershell-move-as-one.jpg") 67% 50% / cover no-repeat; transform: scale(1.015); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 34%, rgba(0,0,0,.05) 70%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 45%); }
.hero__content { position: relative; z-index: 2; display: flex; min-height: calc(100% - 150px); padding-top: 148px; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { margin: 0 0 22px; color: var(--energy); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 42px; height: 2px; margin: 0 14px 3px 0; background: currentColor; }
.eyebrow--dark { color: #5d665f; }
.hero h1, .section-heading h2, .mobility-section h2, .technology-section h2, .final-cta h2, .entry h1, .woocommerce-products-header__title, .product_title {
  margin: 0; font-weight: 760; letter-spacing: -.052em; line-height: .94;
}
.hero h1 { max-width: 850px; font-size: clamp(58px, 7.8vw, 124px); }
.hero__intro { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.8); font-size: clamp(19px, 2vw, 27px); line-height: 1.35; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  display: inline-flex; min-height: 54px; padding: 14px 20px; align-items: center; justify-content: space-between; gap: 36px; border: 1px solid transparent; border-radius: 0; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button--light { min-width: 290px; color: var(--ink); background: var(--white); }
.button--light:hover { background: var(--energy); }
.button--energy { color: var(--ink); background: var(--energy); }
.button--energy:hover { background: var(--white); }
.text-link { display: inline-flex; gap: 18px; align-items: center; padding-block: 12px; border-bottom: 1px solid rgba(255,255,255,.5); font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.hero__proofs { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); }
.hero__proofs span { display: grid; min-height: 106px; padding: 22px 28px; align-content: center; gap: 7px; border-right: 1px solid rgba(255,255,255,.22); font-size: 16px; }
.hero__proofs b { color: var(--energy); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }

.section { padding-block: clamp(90px, 10vw, 160px); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(420px, 1.7fr); gap: 28px 64px; align-items: start; margin-bottom: clamp(55px, 7vw, 100px); }
.section-heading .eyebrow { grid-row: 1 / 3; }
.section-heading h2, .mobility-section h2, .technology-section h2 { font-size: clamp(45px, 6vw, 94px); }
.section-heading > p:last-child { max-width: 650px; margin: 0; color: #575c58; font-size: 19px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0 !important; padding: 1px; background: var(--line); }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product.product-card, .woocommerce-page ul.products li.product.product-card { float: none; width: 100% !important; max-width: none; margin: 0 !important; }
.product-card { display: flex; min-width: 0; flex-direction: column; background: var(--paper); }
.product-card__image { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1.04; background: #e6e8e2; }
.product-card__image img { width: 100% !important; height: 100% !important; margin: 0 !important; object-fit: contain; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__index { position: absolute; right: 14px; bottom: 12px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; opacity: .55; }
.product-card__body { display: grid; min-height: 230px; padding: 27px; grid-template-rows: auto 1fr auto; border-top: 1px solid var(--line); }
.product-card__body h3 { margin: 0; font-size: clamp(23px, 2.2vw, 34px); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
.product-card__body p { color: #666b67; font-size: 15px; }
.product-card__action { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; }
.product-card__action .button { min-height: auto; padding: 0; color: var(--ink); background: none; }
.product-card__action .button:hover { color: #586300; background: none; }
.product-card__action > span { font-size: 24px; }

.mobility-section { color: var(--white); background: var(--ink); }
.mobility-section__grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 700px; }
.mobility-section__image { background: url("../images/hypershell-detail.jpg") 50% 50% / cover no-repeat; }
.mobility-section__copy { display: flex; padding: clamp(45px, 7vw, 110px); flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid rgba(255,255,255,.18); }
.mobility-section__copy p:not(.eyebrow) { max-width: 580px; margin: 34px 0 42px; color: rgba(255,255,255,.68); font-size: 19px; }

.section-heading--wide { grid-template-columns: .65fr 2fr; }
.technology-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.technology-steps li { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); }
.technology-steps span { display: inline-grid; width: 42px; height: 42px; place-items: center; color: var(--ink); background: var(--energy); font-family: var(--mono); font-size: 11px; }
.technology-steps p { max-width: 300px; margin: 92px 0 0; font-size: clamp(21px, 2vw, 30px); line-height: 1.15; }
.final-cta { padding-block: clamp(95px, 12vw, 180px); color: var(--white); background: linear-gradient(rgba(9,10,10,.52), rgba(9,10,10,.78)), url("../images/hypershell-move-as-one.jpg") 50% 45% / cover no-repeat; }
.final-cta__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.final-cta h2 { max-width: 800px; font-size: clamp(54px, 7.5vw, 118px); }

.site-footer { padding-block: 72px 34px; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.2); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; }
.site-footer__logo { width: 170px; height: 43px; object-fit: contain; object-position: left center; }
.site-footer p { max-width: 430px; color: var(--titanium); }
.site-footer nav { display: flex; flex-direction: column; gap: 12px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.site-footer__legal { display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 30px; color: var(--titanium); border-top: 1px solid rgba(255,255,255,.18); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.content-shell, .commerce-shell { min-height: 70vh; padding-top: 150px; padding-bottom: 110px; }
.entry { max-width: 920px; }
.entry h1, .woocommerce-products-header__title, .product_title { font-size: clamp(45px, 6vw, 88px); }
.entry__content { margin-top: 52px; }
.entry__content h2 { margin-top: 2.2em; font-size: clamp(30px, 4vw, 55px); letter-spacing: -.04em; }
.entry__content a { text-decoration: underline; text-decoration-color: var(--energy); text-decoration-thickness: 3px; }
.woocommerce .woocommerce-breadcrumb { margin-bottom: 32px; color: #6b716c; font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.woocommerce div.product { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 100px); }
.woocommerce div.product div.images, .woocommerce div.product div.summary { float: none; width: auto; }
.woocommerce .woocommerce-product-gallery { opacity: 1 !important; }
.woocommerce .woocommerce-product-gallery__wrapper { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.woocommerce .woocommerce-product-gallery__image:first-child { grid-column: 1 / -1; }
.woocommerce .woocommerce-product-gallery__image a { display: block; overflow: hidden; aspect-ratio: 1; background: #e6e8e2; }
.woocommerce .woocommerce-product-gallery__image img { width: 100%; height: 100%; object-fit: contain; }
.woocommerce div.product .summary { padding-top: 30px; }
.hs-review-summary { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin: 18px 0 24px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.hs-review-summary:hover span:last-child { text-decoration: underline; text-decoration-color: var(--energy); text-decoration-thickness: 2px; }
.hs-review-stars { color: #788600; font-size: 15px; letter-spacing: .08em; }
.woocommerce div.product p.price { color: var(--ink); font-size: 24px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: #555b56; font-size: 18px; }
.woocommerce div.product form.cart .button, .woocommerce a.button { color: var(--ink); background: var(--energy); }
.woocommerce div.product form.cart .button:hover, .woocommerce a.button:hover { color: var(--white); background: var(--ink); }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; }
.product-story { display: grid; grid-column: 1 / -1; grid-template-columns: 1.25fr .75fr; gap: clamp(45px, 8vw, 130px); margin-top: 70px; padding-block: clamp(70px, 9vw, 130px); border-block: 1px solid var(--line); }
.product-story__intro h2 { max-width: 850px; margin: 0; font-size: clamp(43px, 6vw, 88px); font-weight: 760; letter-spacing: -.052em; line-height: .96; }
.product-story__intro > p:last-child { max-width: 700px; margin: 38px 0 0; color: #555b56; font-size: 19px; }
.product-story__points { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-story__points li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); font-size: 20px; }
.product-story__points span { color: #66705f; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }
.hypershell-model-content { grid-column: 1 / -1; margin-top: 76px; border-top: 1px solid var(--line); }
.hs-reviews { grid-column: 1 / -1; padding-block: clamp(70px, 9vw, 130px); border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.hs-reviews__heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px 80px; align-items: end; margin-bottom: 52px; }
.hs-reviews__heading h2 { max-width: 850px; margin: 0; font-size: clamp(43px, 6vw, 88px); font-weight: 760; letter-spacing: -.052em; line-height: .96; }
.hs-reviews__heading p { margin: 0; color: #5b615c; }
.hs-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--line); }
.hs-review-card { display: flex; min-width: 0; padding: clamp(24px, 3vw, 38px); flex-direction: column; background: var(--paper); }
.hs-review-card__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #666c67; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.hs-review-card h3, .hs-native-review-title { margin: 28px 0 14px; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.03em; line-height: 1.08; }
.hs-review-card__content { color: #4f5550; font-size: 15px; }
.hs-review-card__content p:first-child { margin-top: 0; }
.hs-review-card footer { margin-top: auto; padding-top: 24px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.hs-review-media { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 22px; }
.hs-review-media a, .hs-review-media video { display: block; overflow: hidden; width: 100%; aspect-ratio: 1; background: #dfe1db; }
.hs-review-media img, .hs-review-media video { width: 100%; height: 100%; object-fit: cover; }
.hs-reviews__more { margin-top: 22px; border-top: 1px solid var(--line); }
.hs-reviews__more > summary { cursor: pointer; padding: 24px 0; font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hs-reviews__more[open] > summary { color: #5c6500; }
.woocommerce #reviews .commentlist .hs-review-media { max-width: 520px; }
.hs-product-detail { color: var(--ink); }
.hs-product-detail__section { padding-block: clamp(64px, 8vw, 118px); border-bottom: 1px solid var(--line); }
.hs-product-detail__section:last-child { border-bottom: 0; }
.hs-product-detail__kicker { display: block; margin-bottom: 18px; color: #62695f; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hs-product-detail h2 { max-width: 970px; margin: 0; font-size: clamp(42px, 6vw, 88px); font-weight: 760; letter-spacing: -.052em; line-height: .96; }
.hs-product-detail__lead { max-width: 820px; margin: 30px 0 0; color: #535954; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.hs-product-detail__metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 52px; border-block: 1px solid var(--line); }
.hs-product-detail__metric { min-height: 150px; padding: 26px; border-right: 1px solid var(--line); }
.hs-product-detail__metric:last-child { border-right: 0; }
.hs-product-detail__metric strong { display: block; font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -.04em; line-height: 1; }
.hs-product-detail__metric span { display: block; margin-top: 12px; color: #606660; font-family: var(--mono); font-size: 11px; line-height: 1.45; text-transform: uppercase; }
.hs-product-detail__benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 48px; padding: 1px; background: var(--line); }
.hs-product-detail__benefit { min-height: 220px; padding: clamp(26px, 4vw, 52px); background: var(--paper); }
.hs-product-detail__benefit b { color: #68715e; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; }
.hs-product-detail__benefit h3 { margin: 44px 0 12px; font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -.035em; line-height: 1.08; }
.hs-product-detail__benefit p { margin: 0; color: #5d635e; }
.hs-product-detail__uses { margin-top: 48px; border-top: 1px solid var(--line); }
.hs-product-detail__use { display: grid; grid-template-columns: .65fr 1.5fr 52px; gap: 30px; padding: 23px 0; align-items: start; border-bottom: 1px solid var(--line); }
.hs-product-detail__use strong { font-size: 19px; }
.hs-product-detail__use span { color: #5b615c; }
.hs-product-detail__use b { color: #68715e; font-family: var(--mono); font-size: 11px; text-align: right; }
.hs-product-detail__specs { width: 100%; margin-top: 48px; border-collapse: collapse; }
.hs-product-detail__specs th, .hs-product-detail__specs td { padding: 20px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.hs-product-detail__specs th { width: 44%; color: #626862; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.hs-product-detail__specs td { font-size: 18px; font-weight: 680; }
.hs-product-detail__faq { margin-top: 44px; border-top: 1px solid var(--line); }
.hs-product-detail__faq details { border-bottom: 1px solid var(--line); }
.hs-product-detail__faq summary { cursor: pointer; padding: 24px 42px 24px 0; font-size: clamp(19px, 2vw, 25px); font-weight: 700; }
.hs-product-detail__faq details p { max-width: 800px; margin: 0; padding: 0 0 25px; color: #5b615c; }
.hs-product-detail__note { max-width: 950px; margin: 40px 0 0; padding-left: 18px; color: #666c67; border-left: 3px solid var(--energy); font-size: 13px; }
.woocommerce span.onsale { min-width: auto; min-height: auto; padding: 7px 10px; border-radius: 0; color: var(--ink); background: var(--energy); font-family: var(--mono); font-size: 10px; line-height: 1; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 36px, 900px); }
  .site-header__inner { display: flex; min-height: 68px; }
  .wordmark { margin-right: auto; }
  .wordmark img { width: 62px; }
  .wordmark span { font-size: 15px; }
  .hs-menu-toggle { display: inline-flex !important; width: auto; min-width: 92px; height: 44px; padding: 0 12px; align-items: center; justify-content: center; gap: 12px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.45); }
  .language-switcher { display: block !important; flex: 0 0 auto; }
  .hs-menu-toggle i, .hs-menu-toggle i::after { display: block; width: 18px; height: 1px; background: currentColor; content: ""; transition: transform .2s ease; }
  .hs-menu-toggle i::after { transform: translateY(5px); }
  .hs-menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .hs-menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .primary-nav { position: fixed; inset: 68px 0 auto; display: none; padding: 40px 24px; flex-direction: column; align-items: flex-start; background: var(--ink); border-top: 1px solid rgba(255,255,255,.2); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 8px 0 18px; font-size: 15px; }
  .hero { min-height: 720px; }
  .hero__content { padding-top: 110px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { grid-row: auto; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobility-section__grid { grid-template-columns: 1fr; }
  .mobility-section__image { min-height: 540px; }
  .technology-steps { grid-template-columns: 1fr; }
  .technology-steps li { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .technology-steps p { margin-top: 48px; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .product-story { grid-template-columns: 1fr; }
  .hs-reviews__heading { grid-template-columns: 1fr; }
  .hs-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hs-product-detail__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hs-product-detail__metric:nth-child(2) { border-right: 0; }
  .hs-product-detail__metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .site-header__inner { gap: 14px; }
  .wordmark { gap: 8px; }
  .wordmark img { width: 54px; }
  .wordmark span { font-size: 13px; }
  .hs-menu-toggle { width: 44px; min-width: 44px; padding: 0; }
  .hs-menu-toggle span { display: none; }
  .language-switcher summary { padding: 7px 9px; }
  .hero { min-height: 700px; max-height: 880px; }
  .hero__media { background-position: 61% 50%; }
  .hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.9), transparent 70%); }
  .hero__content { min-height: calc(100% - 170px); padding-top: 94px; justify-content: flex-end; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero__intro { font-size: 17px; }
  .hero__actions { width: 100%; margin-top: 30px; flex-direction: column; align-items: stretch; gap: 14px; }
  .button--light { min-width: 0; }
  .text-link { justify-content: space-between; }
  .hero__proofs { grid-template-columns: 1fr; }
  .hero__proofs span { display: none; min-height: 58px; padding: 12px 0; border: 0; }
  .hero__proofs span:first-child { display: grid; }
  .section { padding-block: 80px; }
  .section-heading { gap: 20px; margin-bottom: 45px; }
  .section-heading h2, .mobility-section h2, .technology-section h2 { font-size: 46px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .product-card__body { min-height: 200px; }
  .mobility-section { padding-block: 0; }
  .mobility-section__grid { width: 100%; }
  .mobility-section__image { min-height: 480px; }
  .mobility-section__copy { padding: 64px 20px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__legal { flex-direction: column; gap: 12px; }
  .commerce-shell, .content-shell { padding-top: 115px; }
  .hypershell-model-content { margin-top: 50px; }
  .hs-reviews__grid { grid-template-columns: 1fr; }
  .hs-product-detail__metrics, .hs-product-detail__benefits { grid-template-columns: 1fr; }
  .hs-product-detail__metric { min-height: 118px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hs-product-detail__metric:last-child { border-bottom: 0; }
  .hs-product-detail__use { grid-template-columns: 1fr 34px; gap: 10px 16px; }
  .hs-product-detail__use span { grid-column: 1 / -1; grid-row: 2; }
  .hs-product-detail__use b { grid-column: 2; grid-row: 1; }
  .hs-product-detail__specs th, .hs-product-detail__specs td { display: block; width: 100%; }
  .hs-product-detail__specs th { padding-bottom: 6px; border-bottom: 0; }
  .hs-product-detail__specs td { padding-top: 0; }
}

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