:root {
  --ink: #1f2423;
  --ink-soft: #4d5854;
  --line: #d7dfe6;
  --line-strong: #bdcad5;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-alt: #eaf0f5;
  --brand: #094164;
  --brand-deep: #003a5f;
  --brand-soft: #d9e9f4;
  --accent: #006ba0;
  --accent-soft: #e3f0f8;
  --shadow-soft: 0 14px 36px rgba(18, 34, 28, 0.08);
  --shadow-strong: 0 22px 60px rgba(18, 34, 28, 0.14);
  --radius: 8px;
  --radius-soft: 6px;
  --content: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.85), rgba(255, 255, 255, 0) 240px),
    var(--surface);
  line-height: 1.55;
  overflow-x: clip;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

a:hover {
  color: var(--brand);
}

:focus-visible {
  outline: 3px solid #f1c84a;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-soft);
  background: var(--ink);
  color: #fff;
}

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

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.site-utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 28, 43, 0.94);
  color: rgba(255, 255, 255, 0.9);
}

.utility-inner,
.section,
.quote-panel,
.article,
.simple-hero,
.product-hero {
  width: min(var(--content), 90%);
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  font-size: 0.88rem;
}

.utility-inner p,
.utility-links {
  margin: 0;
}

.utility-inner p {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-height: 76px;
  padding: 0.8rem max(5%, calc((100% - var(--content)) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(188, 200, 193, 0.5);
}

.brand img,
.footer-logo {
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(180px, 16vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-soft);
  font-weight: 800;
  line-height: 1.08;
  cursor: pointer;
}

.header-cta,
.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(9, 65, 100, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.36);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
}

.button-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: #fff;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -7px;
}

.menu-toggle-icon::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0a1412;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(10, 20, 18, 0.9), rgba(10, 20, 18, 0.72) 38%, rgba(10, 20, 18, 0.4) 72%, rgba(10, 20, 18, 0.18) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(11, 19, 16, 0.6) 100%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  width: min(var(--content), 90%);
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.hero h1,
.simple-hero h1,
.article h1,
.product-summary h1 {
  margin: 0;
  max-width: 860px;
  font-size: 4rem;
  line-height: 0.97;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-lead {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.eyebrow,
.pill,
.form-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c5f2d8;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(9, 65, 100, 0.14);
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-proof span,
.product-use-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.hero-side {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hero-stat,
.hero-link-list a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.hero-stat {
  display: grid;
  gap: 0.2rem;
  min-height: 110px;
  padding: 1rem;
}

.hero-stat strong {
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hero-link-list {
  display: grid;
  gap: 0.85rem;
}

.hero-link-list a {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  color: #fff;
}

.hero-link-list span {
  font-weight: 800;
}

.hero-link-list small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.proof-band p {
  min-height: 108px;
  margin: 0;
  padding: 1.35rem;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.section,
.quote-panel,
.article,
.simple-hero,
.product-hero {
  padding: 5.6rem 0;
}

.section-muted {
  width: 100%;
  padding-left: max(5%, calc((100% - var(--content)) / 2));
  padding-right: max(5%, calc((100% - var(--content)) / 2));
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
  background:
    linear-gradient(180deg, rgba(234, 240, 245, 0.72), rgba(244, 247, 250, 0.98)),
    var(--surface-soft);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro h2,
.quote-copy h2,
.category-card h3,
.category-card h2,
.product-card h3,
.branch-card h3,
.need-card .card-title-row,
.industry-card .card-title-row,
.blog-card h3,
.two-column h2,
.comparison-grid h3,
.process-card h3 {
  margin: 0 0 0.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.card-title-text {
  min-width: 0;
}

.card-icon {
  display: inline-flex;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 65, 100, 0.12);
  border-radius: var(--radius-soft);
  background: var(--accent-soft);
  color: var(--brand);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-intro h2,
.quote-copy h2 {
  font-size: 2.5rem;
}

.section-intro p,
.product-card p,
.category-card p,
.need-card p,
.industry-card p,
.branch-card p,
.blog-card p,
.quote-copy p,
.article p,
.simple-hero p {
  color: var(--ink-soft);
}

.need-grid,
.category-rail,
.industry-grid,
.product-grid,
.branch-grid,
.blog-grid,
.gallery-grid,
.faq-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.need-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-rail,
.branch-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.need-card,
.category-card,
.industry-card,
.product-card,
.branch-card,
.blog-card,
.process-card,
.form-shell,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.need-card,
.category-card,
.industry-card,
.branch-card,
.blog-card,
.process-card,
details {
  padding: 1.35rem;
}

.need-card .card-title-row,
.industry-card .card-title-row {
  font-size: 1.2rem;
  font-weight: 900;
}

.need-card a,
.category-card a,
.blog-card a,
.industry-card a {
  color: var(--brand);
  font-weight: 800;
}

.product-card {
  overflow: hidden;
  min-width: 0;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(235, 240, 236, 0.5), rgba(255, 255, 255, 0.6));
  padding: 0.9rem;
}

.product-card-body {
  padding: 1rem;
}

.product-card h3 {
  min-height: 3.1rem;
  font-size: 1.12rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.spec-list div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: #fff;
}

.spec-list.compact {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 1rem 0;
}

.spec-list dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0.25rem 0 0;
  font-weight: 900;
}

.inline-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  font-weight: 800;
  color: var(--brand);
}

.comparison-grid,
.two-column,
.quote-panel,
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.comparison-grid > div,
.two-column > div {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 2px;
  background: var(--brand);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.58rem;
  height: 2px;
  background: var(--accent);
}

.section-action {
  margin-top: 2rem;
}

.quote-panel {
  border-top: 1px solid var(--line);
}

.form-shell {
  min-height: 470px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(9, 65, 100, 0.06), rgba(9, 65, 100, 0) 120px),
    #fff;
  box-shadow: var(--shadow-strong);
}

.form-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.form-kicker {
  color: var(--brand);
}

.form-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.lead-grid-wide {
  grid-column: 1 / -1;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.lead-form label span {
  font-size: 0.95rem;
  color: var(--ink);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-form input:hover,
.lead-form textarea:hover {
  border-color: var(--line-strong);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(9, 65, 100, 0.12);
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7a847f;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--brand);
  font-weight: 800;
}

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

details summary {
  cursor: pointer;
  font-weight: 900;
}

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

.product-hero {
  align-items: center;
}

.product-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(235, 240, 236, 0.7), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: contain;
  padding: 1.2rem;
}

.product-summary-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.product-use-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-use-chips span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--ink);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: linear-gradient(180deg, rgba(244, 247, 245, 0.8), rgba(255, 255, 255, 0.9));
  padding: 0.6rem;
}

.article,
.simple-hero {
  max-width: 860px;
}

.article p,
.article li,
.simple-hero p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.article-summary {
  font-weight: 800;
}

.site-footer {
  margin-top: 4rem;
  padding: 4rem 5% 6rem;
  background:
    linear-gradient(180deg, rgba(7, 19, 31, 0.86), rgba(7, 19, 31, 0.97)),
    #0b1f31;
  color: #fff;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(5, 18, 31, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.site-footer h2 {
  margin-top: 0;
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.fine-print {
  width: min(var(--content), 100%);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  a,
  .button,
  .header-cta,
  .site-nav a::after {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .hero-overlay {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0.4rem;
    padding-top: 0.4rem;
    border-top: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 0.85rem 0;
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .proof-band,
  .need-grid,
  .category-rail,
  .industry-grid,
  .product-grid,
  .branch-grid,
  .blog-grid,
  .faq-grid,
  .comparison-grid,
  .two-column,
  .quote-panel,
  .product-hero,
  .footer-grid,
  .process-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .utility-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero h1,
  .simple-hero h1,
  .article h1,
  .product-summary h1 {
    font-size: 3rem;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 0.5rem;
    background: transparent;
    border-top: 0;
    backdrop-filter: none;
  }

  .mobile-action-bar a {
    display: flex;
    min-width: 0;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-soft);
    background: var(--brand);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: var(--accent);
  }
}

@media (max-width: 560px) {
  .utility-inner,
  .section,
  .quote-panel,
  .article,
  .simple-hero,
  .product-hero,
  .hero-overlay {
    width: min(100% - 2rem, var(--content));
  }

  .hero-overlay {
    width: auto;
    margin-left: 1rem;
    margin-right: 0.35rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .utility-inner p {
    max-width: 32ch;
  }

  .utility-links {
    gap: 0.7rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero-overlay {
    padding: 6rem 0 4.2rem;
  }

  .hero h1,
  .simple-hero h1,
  .article h1,
  .product-summary h1 {
    font-size: 1.8rem;
    line-height: 1.04;
    max-width: 22ch;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 42ch;
  }

  .section,
  .quote-panel,
  .article,
  .simple-hero,
  .product-hero {
    padding: 4.2rem 0;
  }

  .section-muted {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .section-intro h2,
  .quote-copy h2 {
    font-size: 1.9rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-stat-grid,
  .spec-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .proof-band p {
    min-height: unset;
  }
}

@media (max-width: 420px) {
  .utility-inner {
    font-size: 0.82rem;
  }

  .utility-inner p {
    max-width: 34ch;
  }

  .hero h1,
  .simple-hero h1,
  .article h1,
  .product-summary h1 {
    font-size: 1.76rem;
    max-width: 21ch;
  }
}
