:root {
  --ink: #071018;
  --ink-soft: #263540;
  --muted: #64727d;
  --line: #d9e0e3;
  --paper: #f6f8f8;
  --white: #ffffff;
  --blue: #1168b7;
  --cyan: #17a7c7;
  --green: #176d62;
  --steel: #7b8b95;
  --dark: #09141c;
  --dark-2: #102230;
  --shadow: 0 22px 70px rgba(7, 16, 24, 0.14);
  --alka: #2f8f68;
  --acid: #b84a3a;
  --floor: #3f6fa8;
  --odor: #6e5aa8;
  --foam: #c08a2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(7, 16, 24, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.topbar.is-solid {
  color: var(--white);
  background: rgba(7, 16, 24, 0.9);
  box-shadow: 0 12px 34px rgba(7, 16, 24, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 132px;
}

.brand-lockup {
  display: block;
  width: auto;
  height: 58px;
  border-radius: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: currentColor;
  font-size: 13px;
  font-weight: 650;
}

.nav a {
  opacity: 0.76;
  transition: opacity 150ms ease;
}

.nav a:hover {
  opacity: 1;
}

.nav .nav-cta {
  min-width: 92px;
  padding: 10px 16px;
  color: var(--white);
  text-align: center;
  background: var(--blue);
  border-radius: 999px;
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 150px clamp(20px, 5vw, 78px) 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.99) 0%, rgba(7, 16, 24, 0.96) 44%, rgba(7, 16, 24, 0.78) 68%, rgba(7, 16, 24, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 16, 24, 0.32), rgba(7, 16, 24, 0.24)),
    url("./assets/lonexpro-hero-reset-final-v2.png?v=20260522-mobile-fix") right center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(246, 248, 248, 0) 100%);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: end;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 42px rgba(17, 104, 183, 0.34);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  min-height: 112px;
  padding: 20px;
  background: rgba(7, 16, 24, 0.28);
}

.hero-metrics strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero-products {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  padding: 34px 20px 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.canister-row-hero {
  width: 100%;
  justify-content: space-between;
  gap: 8px;
}

.shelf-label {
  position: absolute;
  top: 24px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shelf-label strong {
  color: var(--cyan);
}

.canister-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
}

.canister {
  --sku: var(--blue);
  position: relative;
  width: 126px;
  height: 286px;
  flex: 0 0 auto;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.34));
}

.canister.is-main {
  width: 148px;
  height: 338px;
}

.canister.is-tall {
  transform: translateY(16px);
}

.canister-row-hero .canister {
  width: 112px;
  height: 264px;
}

.canister-row-hero .canister.is-main {
  width: 132px;
  height: 314px;
}

.canister-cap {
  position: absolute;
  top: 0;
  left: 58%;
  width: 34px;
  height: 24px;
  transform: translateX(-50%);
  background: #101a22;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px 4px 1px 1px;
}

.canister-handle {
  position: absolute;
  top: 26px;
  left: 30px;
  right: 18px;
  height: 58px;
  background: #e7ecef;
  border-radius: 18px 18px 6px 6px;
  box-shadow: inset 0 -9px 0 rgba(7, 16, 24, 0.08);
}

.canister-handle::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 34px;
  top: 14px;
  height: 23px;
  background: var(--dark);
  border-radius: 999px;
}

.canister-body {
  position: absolute;
  inset: 66px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #f5f7f7, #dfe6e8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px 18px 10px 10px;
  box-shadow:
    inset -16px 0 22px rgba(7, 16, 24, 0.08),
    inset 12px 0 18px rgba(255, 255, 255, 0.72);
}

.canister-body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background: var(--sku);
  border-radius: 17px 17px 0 0;
}

.canister-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 24px;
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px 13px;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-left: 7px solid var(--sku);
  border-radius: 4px;
}

.canister-label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.canister-label b {
  color: var(--sku);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.canister-label strong {
  font-size: 22px;
  line-height: 0.92;
}

.canister-label span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.25;
}

.canister-label em {
  width: fit-content;
  margin-top: 5px;
  padding: 5px 7px;
  color: var(--ink);
  background: #eef3f4;
  border-radius: 3px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.canister-base {
  height: 24px;
  margin: 22px auto 0;
  width: min(86%, 560px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  border-radius: 50%;
  filter: blur(2px);
}

.canister-alka {
  --sku: var(--alka);
}

.canister-acid {
  --sku: var(--acid);
}

.canister-floor {
  --sku: var(--floor);
}

.canister-odor {
  --sku: var(--odor);
}

.canister-foam {
  --sku: var(--foam);
}

.section {
  padding: 96px clamp(20px, 5vw, 78px);
}

.section h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section p {
  color: var(--ink-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head > p {
  margin: 0;
  font-size: 18px;
}

.position-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: start;
}

.position-copy {
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.position-copy p {
  margin: 0 0 18px;
  font-size: 20px;
}

.dark-band {
  padding-top: 38px;
  padding-bottom: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.proof-strip div {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-strip span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 800;
}

.proof-strip strong {
  display: block;
  font-size: 24px;
}

.proof-strip p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.segment-card {
  display: flex;
  min-height: 418px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.segment-card span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 7px 11px;
  color: var(--green);
  background: rgba(23, 109, 98, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.segment-card p {
  margin: 18px 0 24px;
}

.segment-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.segment-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.products {
  background: var(--white);
}

.product-lineup-photo {
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f6f7;
  box-shadow: var(--shadow);
}

.product-lineup-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1716 / 916;
  object-fit: cover;
}

.lineup-shelf {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 318px;
  padding: 22px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 16, 24, 0.08);
}

.product-canister {
  min-height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.product-canister .canister-cap,
.product-canister .canister-handle,
.product-canister .canister-body {
  transform: none;
}

.product-canister.mini {
  position: relative;
}

.product-canister.mini .canister-cap,
.product-canister.mini .canister-handle,
.product-canister.mini .canister-body {
  position: absolute;
}

.product-canister.mini .canister-cap {
  top: 2px;
  left: calc(50% + 16px);
}

.product-canister.mini .canister-handle {
  top: 28px;
  left: calc(50% - 54px);
  right: auto;
  width: 122px;
}

.product-canister.mini .canister-body {
  top: 68px;
  left: calc(50% - 72px);
  width: 144px;
  height: 228px;
}

.product-canister.mini .canister-label {
  min-height: 137px;
}

.product-copy span {
  display: inline-block;
  color: var(--sku);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.product-copy h3 {
  margin-top: 8px;
  font-size: 32px;
}

.product-copy p {
  min-height: 76px;
}

.product-copy ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  padding-top: 9px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.formats {
  background: #eef3f4;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.format-grid article {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.format-canister {
  width: 94px;
  margin-bottom: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 42%),
    linear-gradient(180deg, #f4f7f7, #dce4e7);
  border: 1px solid #cdd8dc;
  border-top: 10px solid var(--blue);
  border-radius: 14px 14px 8px 8px;
  box-shadow: inset -10px 0 14px rgba(7, 16, 24, 0.08);
}

.format-small {
  height: 126px;
}

.format-medium {
  height: 176px;
}

.format-large {
  width: 122px;
  height: 226px;
}

.format-grid span {
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.format-grid h3 {
  margin-top: 12px;
}

.format-grid p {
  margin-bottom: 0;
}

.pilot {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 16, 24, 0.95), rgba(16, 34, 48, 0.98)),
    radial-gradient(circle at 100% 20%, rgba(23, 167, 199, 0.28), transparent 34%);
}

.pilot p {
  color: rgba(255, 255, 255, 0.72);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 58px;
  align-items: start;
}

.pilot-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.pilot-steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--dark);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.pilot-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 21px;
}

.pilot-steps p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.private-lineup {
  min-height: 430px;
  display: block;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 16, 24, 0.96), rgba(16, 34, 48, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.private-lineup img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 62% center;
}

.private-canisters .canister {
  width: 118px;
  height: 268px;
}

.private-canisters .canister-label {
  min-height: 128px;
  bottom: 18px;
}

.private-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.private-list span {
  min-height: 78px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.economics {
  background: #eef3f4;
}

.economics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.economics-grid div {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.economics-grid strong {
  display: block;
  min-height: 58px;
  font-size: 22px;
  line-height: 1.14;
}

.economics-grid p {
  margin: 26px 0 0;
}

.request {
  color: var(--white);
  background: var(--dark);
}

.request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: 60px;
  align-items: start;
}

.request-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 720;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  outline: none;
}

.lead-form select option {
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.form-result {
  display: none;
  padding: 14px;
  color: var(--dark);
  background: #d7f2ef;
  border-radius: 6px;
  font-size: 14px;
}

.form-result.is-visible {
  display: block;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.72);
  background: #050a0f;
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .section-head,
  .hero-layout,
  .position-grid,
  .pilot-layout,
  .split-section,
  .request-panel {
    grid-template-columns: 1fr;
  }

  .segment-grid,
  .economics-grid,
  .proof-strip,
  .lineup-shelf,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .hero-products {
    min-height: 520px;
  }

  .lineup-shelf {
    gap: 18px;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .product-canister {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
    max-width: 172px;
  }

  .brand-lockup {
    height: 42px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 34px;
    background-position: 66% center;
  }

  .hero::after {
    height: 84px;
  }

  .hero-backdrop {
    opacity: 0.42;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-metrics div {
    min-height: 88px;
    padding: 14px 10px;
  }

  .hero-metrics strong {
    font-size: 24px;
  }

  .hero-metrics span {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-products {
    min-height: 420px;
    padding: 72px 10px 34px;
  }

  .canister-row-hero {
    gap: 6px;
  }

  .canister {
    width: 98px;
    height: 234px;
  }

  .canister.is-main {
    width: 112px;
    height: 270px;
  }

  .canister-handle {
    left: 20px;
    right: 10px;
  }

  .canister-handle::after {
    left: 19px;
    right: 22px;
  }

  .canister-label {
    left: 8px;
    right: 8px;
    bottom: 16px;
    min-height: 126px;
    padding: 10px 9px;
    border-left-width: 5px;
  }

  .canister-label strong {
    font-size: 18px;
  }

  .canister-label span {
    font-size: 9px;
  }

  .section {
    padding: 52px 18px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 26px;
  }

  .section h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .section h3 {
    font-size: 23px;
  }

  .proof-strip div {
    min-height: 150px;
    padding: 22px;
  }

  .segment-card {
    min-height: auto;
    padding: 22px;
  }

  .product-lineup-photo {
    margin: 0 0 22px;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(7, 16, 24, 0.1);
  }

  .product-lineup-photo img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
    box-shadow: none;
  }

  .product-copy h3 {
    font-size: 28px;
  }

  .product-copy p {
    min-height: 0;
  }

  .format-grid article {
    min-height: 250px;
  }

  .format-canister {
    margin-bottom: 20px;
  }

  .private-lineup {
    display: none;
  }

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

  .private-list span {
    min-height: auto;
    padding: 15px;
  }

  .economics-grid div {
    min-height: auto;
  }

  .lead-form {
    padding: 18px;
  }

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