@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800;900&family=Rubik:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #263548;
  --muted: #64748b;
  --sky: #f0f9ff;
  --mist: #eff7fb;
  --paper: #ffffff;
  --border: #e0f0f8;
  --blue: #0284c7;
  --cyan: #06b6d4;
  --teal: #0891b2;
  --plum: #8b147f;
  --plum-dark: #6e1166;
  --navy: #071526;
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 30px 70px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  --z-base: 0;
  --z-raised: 10;
  --z-header: 30;
  --z-menu: 40;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--sky) 34%, #ffffff 68%, #f8fbfd 100%);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection {
  color: #ffffff;
  background: var(--blue);
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

iframe {
  border: 0;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(2, 132, 199, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
}

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

h1,
h2,
h3,
.brand,
.button,
.nav-links,
.eyebrow,
.product-facts dt,
.product-facts dd {
  font-family: "Rubik", "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(224, 240, 248, 0.82);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: box-shadow 180ms ease, background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: 160px;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--ink-soft);
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--blue);
  background: rgba(2, 132, 199, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.translate-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid rgba(224, 240, 248, 0.95);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget-simple {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 13px !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
  color: var(--ink) !important;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.24);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(2, 132, 199, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 14px;
}

.button-secondary,
.button-glass {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(224, 240, 248, 0.95);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-glass:hover,
.button-glass:focus-visible {
  color: var(--teal);
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.28);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 84vh;
  padding: 132px 30px 112px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.hero-video-slider,
.hero-video-frame,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video-slider {
  z-index: -3;
  overflow: hidden;
  background: linear-gradient(135deg, #061625 0%, #0f4962 58%, #eefaff 100%);
}

.hero-video-frame {
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  max-width: none;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
  opacity: 0.82;
  filter: saturate(0.95) contrast(1.08);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.86) 0%, rgba(7, 21, 38, 0.7) 38%, rgba(7, 21, 38, 0.28) 70%, rgba(7, 21, 38, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 21, 38, 0.44) 0%, rgba(7, 21, 38, 0.16) 42%, rgba(7, 21, 38, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: var(--z-raised);
  width: min(680px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #9be8f3;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.hero-lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 600;
}

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

.hero-controls {
  position: absolute;
  right: max(30px, calc((100vw - 1180px) / 2));
  bottom: 106px;
  z-index: var(--z-raised);
  display: flex;
  gap: 10px;
}

.video-dot {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.video-dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 16px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.video-dot:hover,
.video-dot:focus-visible,
.video-dot.active {
  transform: translateY(-1px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.32);
}

.video-dot.active::after {
  background: #ffffff;
}

.hero-facts {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: var(--z-raised);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 60px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.22);
}

.hero-facts span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  text-align: center;
}

.hero-facts span:last-child {
  border-right: 0;
}

section {
  scroll-margin-top: 92px;
}

.product-section,
.media-section,
.gallery-section,
.blog-teaser {
  padding: 96px 30px;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(240, 249, 255, 0.95) 0%, #ffffff 100%);
}

.section-intro {
  width: min(880px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-intro.compact {
  margin-bottom: 30px;
}

.section-intro h2,
.process-copy h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

.section-intro p:not(.eyebrow),
.process-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(250px, 1fr);
  gap: 22px;
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(224, 240, 248, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--plum), var(--cyan));
}

.product-q18::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 251, 0.9));
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.12));
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.product-kicker {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-q18 .product-kicker {
  color: var(--blue);
}

.product-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.product-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.product-facts {
  display: grid;
  width: 100%;
  gap: 8px;
  margin: 24px 0;
}

.product-facts div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.product-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.process-section {
  padding: 96px 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #071526 0%, #0a2b3f 55%, #0c5268 100%);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.process-copy .eyebrow {
  color: #9be8f3;
}

.process-copy h2 {
  color: #ffffff;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.proof-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 8px;
  font-family: "Rubik", "Nunito Sans", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.media-section {
  background: #ffffff;
}

.media-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.media-mosaic figure,
.gallery-card,
.video-card,
.blog-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.media-mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, var(--mist));
}

.media-mosaic figure:nth-child(3),
.media-mosaic figure:nth-child(4) {
  grid-column: span 2;
}

.media-mosaic figure:nth-child(3) img,
.media-mosaic figure:nth-child(4) img {
  aspect-ratio: 2.04 / 1;
}

figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
}

.video-library {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 28px auto 0;
}

.video-card {
  background: #ffffff;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-card h3 {
  min-height: 62px;
  margin: 0;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--sky) 0%, #ffffff 100%);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-button {
  min-width: 92px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.active {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: var(--ink);
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, var(--mist));
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-wide img {
  aspect-ratio: 2.04 / 1;
}

.gallery-card h3 {
  margin: 0;
  padding: 13px 14px 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.blog-teaser {
  background: #ffffff;
}

.blog-teaser .section-intro {
  margin-bottom: 0;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 72px 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #071526 0%, #0d3b55 58%, #0c6177 100%);
}

.cta-band > div {
  width: min(620px, 100%);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band .eyebrow {
  color: #9be8f3;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: 46px 30px 52px;
  color: #ffffff;
  background: #071526;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer strong {
  font-family: "Rubik", "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.fine-print {
  font-size: 13px !important;
}

.blog-page {
  background: linear-gradient(180deg, var(--sky), #ffffff 42%);
}

.blog-hero {
  width: min(980px, calc(100% - 60px));
  margin: 0 auto;
  padding: 150px 0 48px;
  text-align: center;
}

.blog-hero h1,
.article-layout h1 {
  margin: 0;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.02;
  font-weight: 900;
}

.blog-hero p:not(.eyebrow),
.article-deck {
  color: var(--muted);
  font-size: 19px;
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
  padding: 0 0 92px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.blog-card-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.blog-card p {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.article-main {
  padding: 136px 30px 92px;
}

.article-layout {
  width: min(820px, 100%);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 34px;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.article-section {
  padding: 25px 0;
  border-top: 1px solid var(--border);
}

.article-section h2,
.article-note h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 25px;
}

.article-section p,
.article-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.article-note {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    justify-content: flex-end;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1fr);
    min-height: 0;
  }

  .product-media {
    min-height: 360px;
  }

  .video-library {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 130px;
  }

  .brand-logo {
    width: 132px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 18px;
    z-index: var(--z-menu);
    display: none;
    width: min(300px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(22px);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 2px;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 12px;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .hero {
    min-height: 82vh;
    padding: 112px 20px 118px;
  }

  .hero-video-frame {
    opacity: 0.7;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 21, 38, 0.84) 0%, rgba(7, 21, 38, 0.64) 48%, rgba(7, 21, 38, 0.88) 100%);
  }

  .hero-content {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-controls {
    right: 20px;
    bottom: 90px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
  }

  .hero-facts span {
    min-height: 52px;
    font-size: 14px;
  }

  .hero-facts span:nth-child(2) {
    border-right: 0;
  }

  .hero-facts span:nth-child(1),
  .hero-facts span:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .product-section,
  .media-section,
  .gallery-section,
  .blog-teaser,
  .process-section {
    padding: 70px 20px;
  }

  .section-intro h2,
  .process-copy h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .product-card,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 320px;
  }

  .media-mosaic,
  .gallery-grid,
  .blog-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero {
    width: calc(100% - 40px);
    padding-top: 120px;
  }

  .blog-hero h1,
  .article-layout h1 {
    font-size: 40px;
  }

  .article-main {
    padding: 118px 20px 70px;
  }

  .cta-band {
    display: grid;
    padding: 60px 20px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 20px 42px;
  }
}

@media (max-width: 580px) {
  .hero {
    padding-bottom: 132px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-controls {
    right: auto;
    left: 20px;
    bottom: 90px;
  }

  .video-dot {
    width: 40px;
    height: 40px;
  }

  .video-dot::after {
    margin: 14px auto;
  }

  .product-card {
    padding: 18px;
  }

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

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .proof-grid,
  .media-mosaic,
  .gallery-grid,
  .video-library,
  .blog-index {
    grid-template-columns: 1fr;
  }

  .media-mosaic figure:nth-child(3),
  .media-mosaic figure:nth-child(4),
  .gallery-card-wide {
    grid-column: auto;
  }

  .media-mosaic figure:nth-child(3) img,
  .media-mosaic figure:nth-child(4) img {
    aspect-ratio: 1 / 1;
  }

  .section-intro h2,
  .process-copy h2,
  .cta-band h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
