:root {
  --navy: #071f4f;
  --navy-2: #0a2b67;
  --blue: #0b67f0;
  --blue-bright: #2b87ff;
  --amber: #f6ad00;
  --amber-soft: #ffd45b;
  --ink: #10213d;
  --muted: #5e6c82;
  --line: #dfe5ee;
  --surface: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 31, 79, 0.12);
  --container: min(1280px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Rooftop", Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  --navy: var(--brand-primary, #071f4f);
  --amber: var(--brand-accent, #f6ad00);
  min-height: 100vh;
  overflow: clip;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--amber {
  color: var(--amber);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    border 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--navy-2);
  background: var(--navy-2);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.button--light:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy);
}

.button--amber {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy);
}

.button--amber:hover {
  border-color: #ffd059;
  background: #ffd059;
}

.button--secondary {
  border-color: var(--navy);
  background: var(--navy);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.arrow-link svg {
  transition: transform 180ms ease;
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: relative;
  z-index: 100;
}

.utility-bar {
  min-height: 34px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.utility-bar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.88;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43d17f;
  box-shadow: 0 0 0 4px rgba(67, 209, 127, 0.14);
}

.utility-bar__inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.84;
}

.utility-bar a:hover {
  opacity: 1;
}

.nav-shell {
  position: relative;
  min-height: 82px;
  border-bottom: 1px solid rgba(8, 36, 85, 0.11);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 18px rgba(7, 31, 79, 0.04);
}

.nav-shell__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 34px;
}

.brand-mark {
  display: block;
  flex: 0 0 173px;
}

.brand-mark img {
  width: 173px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-mega-trigger > button {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #273957;
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav > a::after,
.nav-mega-trigger > button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.nav-mega-trigger > button:hover::after,
.nav-mega-trigger > button[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-mega-trigger {
  height: 100%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  width: min(1160px, calc(100vw - 64px));
  min-height: 330px;
  grid-template-columns: 1.25fr 1.15fr 0.8fr;
  margin: 0 auto;
  border-top: 4px solid var(--amber);
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 31, 79, 0.2);
}

.mega-menu__intro,
.mega-menu__links,
.mega-menu__feature {
  padding: 38px;
}

.mega-menu__intro {
  background: #f7f9fc;
}

.mega-menu__intro h3 {
  max-width: 330px;
  margin: 16px 0 14px;
  color: var(--navy);
  font-size: 29px;
}

.mega-menu__intro p {
  max-width: 370px;
  color: var(--muted);
  font-size: 14px;
}

.mega-menu__links {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 1px 25px;
}

.mega-menu__links button {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  font-weight: 750;
}

.mega-menu__links button:hover {
  color: var(--blue);
}

.mega-menu__feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  color: #fff;
}

.mega-menu__feature > svg {
  margin-bottom: 24px;
  color: var(--amber);
}

.mega-menu__feature > span {
  color: #9fb3d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu__feature strong {
  margin: 8px 0;
  font-size: 20px;
}

.mega-menu__feature p {
  color: #c9d4e8;
  font-size: 13px;
}

.mega-menu__feature a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu .container {
  display: flex;
  flex-direction: column;
  padding: 20px 0 26px;
}

.mobile-menu a:not(.button) {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.mobile-menu .button {
  margin-top: 20px;
}

.search-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: max(110px, 10vh);
  background: rgba(4, 18, 48, 0.94);
  backdrop-filter: blur(8px);
}

.search-overlay__close {
  position: absolute;
  top: 30px;
  right: 34px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

.search-overlay__panel {
  width: min(760px, calc(100vw - 40px));
}

.search-overlay__panel .eyebrow {
  margin-bottom: 24px;
  color: var(--amber);
}

.search-field {
  display: flex;
  height: 74px;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 3px solid var(--amber);
  background: #fff;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.search-hint {
  margin: 16px 0;
  color: #bdc9df;
  font-size: 13px;
}

.search-results {
  max-height: 56vh;
  overflow: auto;
  background: #fff;
}

.search-results button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
}

.search-results button:hover {
  background: #f3f7fc;
  color: var(--blue);
}

.search-results button span {
  display: flex;
  flex-direction: column;
}

.search-results small {
  margin-top: 4px;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero__beam {
  position: absolute;
  top: -180px;
  left: 24%;
  width: 170px;
  height: 900px;
  background: linear-gradient(
    to bottom,
    rgba(50, 135, 255, 0.5),
    rgba(50, 135, 255, 0)
  );
  filter: blur(30px);
  opacity: 0.38;
  transform: rotate(29deg);
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.hero__content {
  display: flex;
  max-width: 690px;
  flex-direction: column;
  justify-content: center;
  padding: 76px 60px 76px 0;
}

.hero__content h1 {
  max-width: 680px;
  margin: 20px 0 24px;
  font-size: clamp(52px, 5.4vw, 78px);
  font-weight: 790;
  line-height: 0.98;
}

.hero__content > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #cbd7eb;
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #aebfdd;
  font-size: 12px;
  font-weight: 700;
}

.hero__trust svg {
  color: var(--amber);
}

.hero__visual {
  position: relative;
  min-width: calc((100vw - min(1280px, calc(100vw - 48px))) / 2 + 50%);
  margin-right: calc((min(1280px, calc(100vw - 48px)) - 100vw) / 2);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--navy) 0%,
      rgba(7, 31, 79, 0.38) 24%,
      rgba(7, 31, 79, 0.02) 55%
    ),
    linear-gradient(0deg, rgba(7, 31, 79, 0.32), transparent 55%);
  content: "";
}

.hero__visual > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: 53% center;
}

.hero__metric {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  display: grid;
  width: 270px;
  grid-template-columns: 34px 1fr;
  padding: 21px;
  border-top: 3px solid var(--amber);
  background: rgba(6, 28, 72, 0.93);
  box-shadow: var(--shadow);
}

.hero__metric svg {
  grid-row: span 3;
  color: var(--amber);
}

.hero__metric span {
  color: #b5c6e4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__metric strong {
  margin: 2px 0;
  font-size: 17px;
}

.hero__metric small {
  color: #8fa4c8;
  font-size: 10px;
}

.stats-band {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats-grid {
  display: grid;
  min-height: 128px;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
  border-left: 1px solid var(--line);
}

.stats-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.04em;
}

.stats-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 104px 0;
}

.section--muted {
  background: var(--surface);
}

.section--navy {
  background: var(--navy);
  color: #fff;
}

.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  margin: 17px 0 17px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 53px);
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light p {
  color: #bfcee5;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.section-topline > .arrow-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(145deg, #f8fafc, #e9eef6);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.product-card h3 a:hover {
  color: var(--blue);
}

.product-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-card__meta a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  background: #eff5ff;
  color: var(--blue);
}

.solution-story {
  overflow: hidden;
  padding: 0;
  background: var(--navy);
}

.solution-story__grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1fr 1fr;
}

.solution-story__image {
  position: relative;
  min-width: calc((100vw - min(1280px, calc(100vw - 48px))) / 2 + 100%);
  margin-left: calc((min(1280px, calc(100vw - 48px)) - 100vw) / 2);
}

.solution-story__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, var(--navy)),
    linear-gradient(0deg, rgba(4, 18, 48, 0.45), transparent 60%);
  content: "";
}

.solution-story__image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.solution-story__tag {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: max(30px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-left: 3px solid var(--amber);
  background: rgba(6, 28, 72, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.solution-story__tag svg {
  color: var(--amber);
}

.solution-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px 70px;
}

.solution-points {
  margin: 36px 0;
}

.solution-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.solution-points > div > span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
}

.solution-points h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 18px;
}

.solution-points p {
  margin: 0;
  color: #aebed9;
  font-size: 13px;
}

.solution-story__content .button {
  align-self: flex-start;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-tile {
  position: relative;
  min-height: 205px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.industry-tile > svg:first-child {
  margin-bottom: 23px;
  color: var(--blue);
}

.industry-tile strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.industry-tile p {
  max-width: 290px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.industry-tile > svg:last-child {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: var(--blue);
}

.industry-tile:hover {
  background: var(--navy);
}

.industry-tile:hover strong,
.industry-tile:hover p {
  color: #fff;
}

.industry-tile:hover > svg:last-child,
.industry-tile:hover > svg:first-child {
  color: var(--amber);
}

.project-feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 285px);
  gap: 18px;
}

.project-feature {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  background: var(--navy);
}

.project-feature--wide {
  grid-row: span 2;
}

.project-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-feature:hover > img {
  transform: scale(1.04);
}

.project-feature__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(3, 16, 43, 0.93),
    rgba(3, 16, 43, 0.03) 70%
  );
}

.project-feature__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 31px;
  color: #fff;
}

.project-feature__body > span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-feature__body h3 {
  margin: 7px 0 3px;
  font-size: 26px;
}

.project-feature--wide .project-feature__body h3 {
  font-size: 38px;
}

.project-feature__body p {
  margin-bottom: 11px;
  color: #c3cee0;
  font-size: 13px;
}

.project-feature__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.client-band {
  padding: 75px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #576781;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(108deg, #061d4a, #0b397f);
  color: #fff;
}

.cta-band::after {
  position: absolute;
  top: -150px;
  right: 11%;
  width: 170px;
  height: 500px;
  background: rgba(51, 142, 255, 0.24);
  content: "";
  filter: blur(30px);
  transform: rotate(32deg);
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 720px;
  margin: 15px 0 10px;
  font-size: clamp(34px, 4vw, 50px);
}

.cta-band p {
  margin: 0;
  color: #b7c6de;
}

.cta-band__inner > div:last-child {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  gap: 15px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #d3ddec;
  font-size: 13px;
  font-weight: 800;
}

.page-intro {
  position: relative;
  overflow: hidden;
  min-height: 385px;
  padding: 77px 0 40px;
  background: var(--navy);
  color: #fff;
}

.page-intro::after {
  position: absolute;
  right: -60px;
  bottom: -200px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.015);
}

.page-intro__glow {
  position: absolute;
  top: -190px;
  right: 23%;
  width: 180px;
  height: 720px;
  background: rgba(39, 132, 255, 0.26);
  filter: blur(40px);
  transform: rotate(35deg);
}

.page-intro .container {
  position: relative;
  z-index: 2;
}

.page-intro h1 {
  max-width: 900px;
  margin: 18px 0;
  font-size: clamp(48px, 6vw, 72px);
}

.page-intro > .container > p {
  max-width: 760px;
  margin-bottom: 30px;
  color: #c2cfe3;
  font-size: 17px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #9eb0cf;
  font-size: 11px;
  font-weight: 700;
}

.breadcrumb > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb em {
  color: #dbe3ef;
  font-style: normal;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}

.catalogue-filter {
  position: sticky;
  top: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 19px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

.compact-search {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  margin: 15px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.compact-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.filter-options {
  border-top: 1px solid var(--line);
}

.filter-options button {
  display: flex;
  width: 100%;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #43526a;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.filter-options button small {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  font-size: 10px;
}

.filter-options button:hover,
.filter-options button.active {
  background: #edf4ff;
  color: var(--blue);
}

.filter-help {
  padding: 21px;
  background: #f5f8fc;
}

.filter-help > svg {
  margin-bottom: 10px;
  color: var(--amber);
}

.filter-help strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.filter-help p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 11px;
}

.filter-help .arrow-link {
  font-size: 11px;
}

.catalogue-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.catalogue-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalogue-summary p strong {
  color: var(--navy);
  font-size: 21px;
}

.catalogue-summary > span {
  padding: 6px 10px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-grid--catalogue .product-card__image {
  height: 225px;
}

.empty-state {
  padding: 90px 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.empty-state svg {
  color: var(--blue);
}

.empty-state h2 {
  margin: 14px 0 8px;
  color: var(--navy);
}

.empty-state p {
  color: var(--muted);
}

.product-detail-hero {
  padding: 34px 0 70px;
  background: var(--navy);
  color: #fff;
}

.product-detail-hero .breadcrumb {
  margin-bottom: 45px;
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.product-detail-hero h1 {
  max-width: 680px;
  margin: 18px 0 20px;
  font-size: clamp(46px, 5vw, 66px);
}

.product-detail-hero__grid > div:first-child > p {
  max-width: 650px;
  margin-bottom: 29px;
  color: #c3d0e3;
  font-size: 16px;
  line-height: 1.75;
}

.product-detail-hero__image {
  position: relative;
  height: 450px;
  padding: 25px;
  background: linear-gradient(145deg, #fff, #edf3fb);
}

.product-detail-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-hero__image span {
  position: absolute;
  right: 15px;
  bottom: 12px;
  color: #738198;
  font-size: 9px;
}

.anchor-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 15px rgba(7, 31, 79, 0.05);
  backdrop-filter: blur(9px);
}

.anchor-nav .container {
  display: flex;
  gap: 34px;
  overflow: auto;
}

.anchor-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 20px 0;
  color: #485972;
  font-size: 12px;
  font-weight: 800;
}

.anchor-nav a:hover {
  color: var(--blue);
}

.detail-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.detail-two-col--top {
  align-items: start;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #394a63;
  font-size: 14px;
  font-weight: 700;
}

.feature-list svg,
.project-highlight svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.table-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

th {
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

tbody tr:hover {
  background: #f4f8fe;
}

td code {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 12px;
}

.spec-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.application-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 36px;
}

.application-pills span {
  padding: 14px 19px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  color: #d8e1f0;
  font-size: 13px;
  font-weight: 700;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-grid article > svg {
  margin-bottom: 55px;
  color: var(--blue);
}

.pillar-grid article > span {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #a8b4c6;
  font-size: 10px;
  font-weight: 800;
}

.pillar-grid h2 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 19px;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.zoning-section .section-heading {
  max-width: 790px;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 45px;
}

.zone-grid article {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.zone-grid__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.zone-grid__top span {
  color: #aebed8;
  font-size: 12px;
  font-weight: 800;
}

.zone-grid__top strong {
  color: var(--amber);
  font-size: 40px;
  line-height: 1;
}

.zone-grid article > small {
  display: block;
  margin: 5px 0 35px;
  color: #7f94b7;
  font-size: 9px;
  text-align: right;
  text-transform: uppercase;
}

.zone-grid h3 {
  min-height: 44px;
  margin: 0 0 13px;
  font-size: 18px;
}

.zone-grid p {
  color: #adbed9;
  font-size: 12px;
  line-height: 1.7;
}

.zone-grid article > div:not(.zone-grid__top) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d2dbea;
  font-size: 11px;
}

.zone-grid article > div svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.zone-meter {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.zone-meter::after {
  display: block;
  width: 80%;
  height: 100%;
  background: var(--amber);
  content: "";
}

.zone-meter--2::after {
  width: 50%;
}
.zone-meter--3::after {
  width: 20%;
}

.weighted-saving {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 17px;
  padding: 21px 25px;
  border-left: 4px solid var(--amber);
  background: #fff;
  color: var(--navy);
}

.weighted-saving svg {
  color: var(--blue);
}

.weighted-saving div {
  display: flex;
  flex-direction: column;
}

.weighted-saving span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.weighted-saving strong {
  font-size: 18px;
}

.driver-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.driver-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.driver-specs > div {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.driver-specs span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.driver-specs strong {
  color: var(--navy);
  font-size: 19px;
}

.driver-visual {
  display: grid;
  min-height: 450px;
  place-items: center;
  background: radial-gradient(circle at center, #184a9d, var(--navy) 62%);
  color: #fff;
  text-align: center;
}

.driver-orbit {
  position: relative;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.orbit--one {
  width: 220px;
  height: 220px;
}
.orbit--two {
  width: 310px;
  height: 310px;
  border-style: dashed;
}

.driver-visual p {
  align-self: start;
  margin-top: -80px;
  color: #c7d2e3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 43px;
}

.service-grid article {
  padding: 31px;
  border-top: 4px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 31, 79, 0.06);
}

.service-grid article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.service-grid h2 {
  margin: 13px 0 9px;
  color: var(--navy);
  font-size: 24px;
}

.service-grid article > p {
  color: var(--muted);
  font-size: 13px;
}

.service-grid ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #45546a;
  font-size: 12px;
}

.service-grid li svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.industry-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-page-grid article {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.industry-page-grid__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 35px;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
}

.industry-page-grid small {
  color: #9ba8ba;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-page-grid h2 {
  margin: 9px 0;
  color: var(--navy);
  font-size: 22px;
}

.industry-page-grid p {
  min-height: 60px;
  color: var(--muted);
  font-size: 12px;
}

.industry-page-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.industry-page-grid article:hover {
  background: var(--surface);
}

.industry-proof {
  background: var(--navy);
  color: #fff;
}

.industry-proof__grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.industry-proof__grid > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.industry-proof__grid > div {
  padding: 60px;
}

.industry-proof h2 {
  margin: 17px 0;
  font-size: 45px;
}

.industry-proof p {
  color: #b8c7df;
}

.industry-proof ul {
  display: grid;
  gap: 12px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.industry-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.industry-proof li svg {
  color: var(--amber);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.project-filters > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 15px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.project-filters button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.project-filters button.active,
.project-filters button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card {
  border: 1px solid var(--line);
  background: #fff;
}

.project-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 280px;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.04);
}

.project-card__image span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 11px;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card > div {
  padding: 25px;
}

.project-card small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 23px;
}

.project-card p {
  color: var(--muted);
  font-size: 12px;
}

.project-card .arrow-link {
  margin-top: 5px;
  font-size: 12px;
}

.project-detail-hero {
  padding: 32px 0 0;
  background: var(--navy);
  color: #fff;
}

.project-detail-hero .breadcrumb {
  margin-bottom: 32px;
}

.project-detail-hero__grid {
  display: grid;
  min-height: 570px;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.project-detail-hero__grid > div {
  padding: 55px 70px 55px 0;
}

.project-detail-hero h1 {
  margin: 16px 0 8px;
  font-size: 56px;
}

.project-detail-hero__grid > div > p {
  color: #c2cee1;
  font-size: 18px;
}

.project-detail-hero dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 35px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-detail-hero dl div {
  display: flex;
  flex-direction: column;
}

.project-detail-hero dt {
  color: #8399bd;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-detail-hero dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.project-detail-hero__grid > img {
  width: calc(100% + (100vw - min(1280px, calc(100vw - 48px))) / 2);
  height: 570px;
  object-fit: cover;
}

.project-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.project-gallery {
  display: grid;
  gap: 16px;
}

.project-gallery img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.project-note {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  border-left: 4px solid var(--blue);
  background: #fff;
}

.project-note > svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.project-note h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 21px;
}

.project-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.project-note .button {
  flex: 0 0 auto;
  margin-left: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story-images {
  position: relative;
  min-height: 530px;
}

.story-images img:first-child {
  width: 85%;
  height: 430px;
  object-fit: cover;
}

.story-images img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  border: 12px solid #fff;
  object-fit: cover;
}

.story-grid > div:last-child > h2 {
  margin: 17px 0;
  color: var(--navy);
  font-size: 43px;
}

.story-grid > div:last-child > p {
  color: var(--muted);
  line-height: 1.75;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.story-timeline div {
  display: flex;
  flex-direction: column;
  padding: 20px 12px 0 0;
}

.story-timeline strong {
  color: var(--blue);
  font-size: 21px;
}

.story-timeline span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.mission-section {
  padding: 95px 0;
  background: var(--navy);
  color: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mission-grid article {
  padding: 12px 70px 12px 0;
}

.mission-grid article + article {
  padding: 12px 0 12px 70px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.mission-grid span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mission-grid h2 {
  margin: 15px 0 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.35;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-grid article {
  min-height: 230px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.value-grid h2 {
  margin: 42px 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.factory-band {
  padding: 0;
  background: var(--navy);
  color: #fff;
}

.factory-band__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.factory-band__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 65px 70px 0;
}

.factory-band h2 {
  margin: 17px 0;
  font-size: 39px;
}

.factory-band p {
  color: #b4c4dc;
  font-size: 13px;
}

.factory-band .button {
  align-self: flex-start;
  margin-top: 12px;
}

.factory-band img {
  width: calc(100% + (100vw - min(1280px, calc(100vw - 48px))) / 2);
  height: 540px;
  object-fit: cover;
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
}

.quality-steps article {
  position: relative;
  min-height: 230px;
  padding: 0 28px;
}

.quality-steps article:first-child {
  padding-left: 0;
}

.quality-steps article > span {
  display: block;
  margin-bottom: 17px;
  color: #9daabd;
  font-size: 10px;
  font-weight: 900;
}

.quality-steps__line {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.quality-steps article svg {
  position: relative;
  z-index: 2;
  margin: 16px 0 27px;
  background: #fff;
  color: var(--blue);
}

.quality-steps h2 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.quality-proof {
  background: var(--surface);
}

.quality-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.quality-proof__grid > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.quality-proof__grid > div {
  min-height: 600px;
  padding: 65px;
  background: var(--navy);
  color: #fff;
}

.quality-proof h2 {
  margin: 16px 0 35px;
  font-size: 42px;
}

.quality-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.quality-metrics > div {
  display: flex;
  min-height: 135px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.quality-metrics svg {
  margin-bottom: 11px;
  color: var(--amber);
}

.quality-metrics strong {
  font-size: 21px;
}

.quality-metrics span {
  color: #aebed8;
  font-size: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.contact-panel {
  padding: 38px;
  background: var(--navy);
  color: #fff;
}

.contact-panel h2 {
  margin: 16px 0 12px;
  font-size: 33px;
}

.contact-panel > p {
  margin-bottom: 30px;
  color: #aec0dc;
  font-size: 12px;
}

.contact-method {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-method > svg {
  color: var(--amber);
}

.contact-method > div {
  display: flex;
  flex-direction: column;
}

.contact-method span {
  margin-bottom: 6px;
  color: #869cbe;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method a {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 750;
}

.service-reach {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 17px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.06);
}

.service-reach svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.service-reach p {
  margin: 0;
  color: #b8c8df;
  font-size: 11px;
}

.contact-form {
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  outline: none;
  transition:
    border 150ms ease,
    box-shadow 150ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 103, 240, 0.1);
}

.contact-form .consent {
  flex-direction: row;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.contact-form .consent input {
  width: 16px;
  height: 16px;
}

.form-status {
  margin-top: 13px;
  color: #238251;
  font-size: 12px;
  font-weight: 700;
}

.location-section {
  padding: 65px 0;
  background: var(--surface);
}

.location-section .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.location-section .container > div {
  min-height: 210px;
  padding: 29px;
  background: #fff;
}

.location-section h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 23px;
}

.location-section p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  color: var(--navy);
  font-size: 34px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.legal-copy a {
  color: var(--blue);
  font-weight: 750;
}

.not-found {
  display: grid;
  min-height: 620px;
  place-items: center;
  background: var(--surface);
  text-align: center;
}

.not-found span {
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.not-found h1 {
  max-width: 650px;
  margin: 14px auto;
  color: var(--navy);
  font-size: 52px;
}

.not-found p {
  margin-bottom: 25px;
  color: var(--muted);
}

.site-footer {
  padding: 76px 0 0;
  background: #04142f;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 65px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 180px;
  padding: 7px;
  background: #fff;
}

.footer-brand > p {
  max-width: 340px;
  margin: 24px 0;
  color: #9fb0ca;
  font-size: 12px;
  line-height: 1.75;
}

.footer-brand > div {
  display: flex;
  gap: 8px;
}

.footer-brand > div a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--amber);
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-top h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) a {
  color: #9fb0ca;
  font-size: 11px;
}

.footer-top > div:not(.footer-brand) a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #758aa9;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-admin-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d9e4f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-admin-button:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: #071f4f;
  transform: translateY(-1px);
}

/* Admin */
.admin-shell,
.admin-gate,
.admin-loading {
  min-height: 100vh;
  background: #eef2f7;
}

.admin-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 750;
}

.spin {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.admin-gate {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: radial-gradient(circle at 50% 10%, #163c78, #061d48 55%, #04152f);
}

.admin-gate::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.admin-back {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #becbe0;
  font-size: 12px;
  font-weight: 750;
}

.admin-gate__card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  padding: 42px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.admin-gate__card > img {
  width: 165px;
  margin-bottom: 34px;
}

.admin-gate__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 23px;
  place-items: center;
  background: #eaf3ff;
  color: var(--blue);
}

.admin-gate__card h1 {
  margin: 15px 0 11px;
  color: var(--navy);
  font-size: 34px;
}

.admin-gate__card > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.admin-gate__card .button {
  width: 100%;
  margin-top: 5px;
}

.admin-setup-card {
  width: min(620px, 100%);
}

.admin-setup-card ol {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.admin-setup-card li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.admin-setup-card li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.admin-setup-card li div {
  display: flex;
  flex-direction: column;
}

.admin-setup-card li strong {
  color: var(--navy);
  font-size: 13px;
}

.admin-setup-card li small {
  color: var(--muted);
  font-size: 11px;
}

.admin-error,
.admin-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  border-left: 3px solid #d64141;
  background: #fff1f1;
  color: #9b2f2f;
  font-size: 11px;
  font-weight: 700;
}

.admin-login-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 12px;
  color: #6c7480;
  font-size: 11px;
  font-weight: 700;
}

.admin-status {
  margin: 0 0 20px;
  border-left-color: #2aa36a;
  background: #eaf8f1;
  color: #1d7049;
}

.cms-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
}

.cms-field > span,
.cms-toggle > span {
  color: #394962;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.cms-field input,
.cms-field textarea {
  width: 100%;
  border: 1px solid #d8e0eb;
  border-radius: 3px;
  outline: none;
  background: #fff;
  font-size: 12px;
}

.cms-field input {
  height: 45px;
  padding: 0 12px;
}

.cms-field textarea {
  padding: 12px;
  resize: vertical;
  line-height: 1.55;
}

.cms-field input:focus,
.cms-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 103, 240, 0.08);
}

.cms-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 12px;
  border: 1px solid var(--line);
}

.admin-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #d7dfe9;
  background: #fff;
}

.admin-header > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-header img {
  width: 132px;
}

.admin-header > div:first-child span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-header > div:last-child span {
  color: var(--muted);
  font-size: 11px;
}

.admin-header button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #40516a;
  font-size: 11px;
  font-weight: 750;
}

.admin-workspace {
  display: grid;
  min-height: calc(100vh - 138px);
  grid-template-columns: 245px 1fr;
}

.admin-sidebar {
  padding: 23px 14px 90px;
  border-right: 1px solid #d7dfe9;
  background: #fff;
}

.admin-sidebar__label {
  margin: 0 10px 9px;
  color: #94a2b6;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar__label--sections {
  margin-top: 28px;
}

.admin-sidebar button {
  display: flex;
  width: 100%;
  min-height: 39px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #4f5f76;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
}

.admin-sidebar button:hover,
.admin-sidebar button.active {
  background: #eaf3ff;
  color: var(--blue);
}

.admin-main {
  width: min(1040px, calc(100vw - 290px));
  margin: 0 auto;
  padding: 38px 0 130px;
}

.admin-main__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.admin-main__top h1 {
  margin: 10px 0 6px;
  color: var(--navy);
  font-size: 34px;
}

.admin-main__top p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.admin-publish-state span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-publish-state .dirty {
  background: #fff3d7;
  color: #9c6a00;
}

.admin-publish-state .saved {
  background: #e5f7ed;
  color: #21764c;
}

.admin-editor-card,
.json-editor,
.media-manager {
  padding: 28px;
  border: 1px solid #d7dfe9;
  background: #fff;
  box-shadow: 0 8px 25px rgba(7, 31, 79, 0.04);
}

.cms-object {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.cms-object--nested {
  grid-template-columns: 1fr 1fr;
}

.cms-array {
  grid-column: 1 / -1;
  margin: 8px 0 20px;
  border: 1px solid #d7dfe9;
}

.cms-array__heading {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 13px;
  border-bottom: 1px solid #d7dfe9;
  background: #f4f7fb;
}

.cms-array__heading > div {
  display: flex;
  flex-direction: column;
}

.cms-array__heading strong {
  color: var(--navy);
  font-size: 12px;
}

.cms-array__heading small {
  color: var(--muted);
  font-size: 9px;
}

.cms-array__heading button,
.cms-array__item-bar button,
.media-manager__result button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.cms-array__items {
  display: grid;
  gap: 11px;
  padding: 12px;
  background: #f7f9fc;
}

.cms-array__item {
  padding: 0 15px 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.cms-array__item-bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: #57677e;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.cms-array__item-bar > div {
  display: flex;
  gap: 5px;
}

.cms-array__item-bar button {
  min-height: 28px;
  padding: 0 7px;
  color: #6c7b91;
}

.cms-array__item-bar button:last-child:hover {
  border-color: #d44;
  color: #c33;
}

.cms-details {
  grid-column: 1 / -1;
  margin-bottom: 13px;
  border: 1px solid var(--line);
}

.cms-details summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: #f5f8fc;
  color: var(--navy);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  list-style: none;
}

.cms-details[open] summary svg {
  transform: rotate(180deg);
}

.cms-details > .cms-object {
  padding: 14px;
}

.media-manager__drop {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px dashed #c9d4e3;
  background: #f8fafc;
  text-align: center;
}

.media-manager__drop > svg {
  color: var(--blue);
}

.media-manager__drop h2 {
  margin: 15px 0 7px;
  color: var(--navy);
  font-size: 23px;
}

.media-manager__drop p {
  max-width: 430px;
  color: var(--muted);
  font-size: 11px;
}

.media-manager__drop input {
  display: none;
}

.media-manager__result {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid var(--line);
}

.media-manager__result img {
  width: 160px;
  height: 110px;
  object-fit: contain;
  background: var(--surface);
}

.media-manager__result .cms-field {
  margin: 0;
}

.json-editor__warning {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 12px;
  border-left: 3px solid var(--amber);
  background: #fff7e3;
  color: #765613;
  font-size: 11px;
}

.json-editor textarea {
  width: 100%;
  height: 620px;
  padding: 16px;
  border: 1px solid #2f415b;
  background: #07192f;
  color: #cfe3ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.55;
  resize: vertical;
}

.json-editor .button {
  margin-top: 14px;
}

.admin-actionbar {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 245px;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 25px;
  border-top: 1px solid #d7dfe9;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -10px 30px rgba(7, 31, 79, 0.08);
  backdrop-filter: blur(8px);
}

.admin-actionbar > div:first-child {
  display: flex;
  flex-direction: column;
}

.admin-actionbar span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.admin-actionbar small {
  color: var(--muted);
  font-size: 9px;
}

.admin-actionbar > div:last-child {
  display: flex;
  gap: 9px;
}

.admin-actionbar button:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: #53637a;
  font-size: 10px;
  font-weight: 750;
}

.admin-actionbar .button {
  min-height: 44px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav > a,
  .nav-mega-trigger > button {
    font-size: 12px;
  }
  .nav-actions .button {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid--catalogue {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quality-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 0;
  }
  .footer-top {
    gap: 35px;
  }
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 36px, 760px);
  }
  .utility-bar__inner > div {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .nav-shell__inner {
    min-height: 72px;
  }
  .nav-shell {
    min-height: 72px;
  }
  .nav-actions {
    margin-left: auto;
  }
  .menu-button {
    display: inline-grid;
  }
  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero__content {
    max-width: 760px;
    padding: 75px 0 55px;
  }
  .hero__visual {
    min-width: 0;
    margin: 0 calc((min(100% - 36px, 760px) - 100vw) / 2);
  }
  .hero__visual > img {
    height: 470px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .stats-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .section {
    padding: 80px 0;
  }
  .solution-story__grid {
    grid-template-columns: 1fr;
  }
  .solution-story__image {
    min-width: 0;
    margin: 0 calc((min(100% - 36px, 760px) - 100vw) / 2);
  }
  .solution-story__image img {
    height: 520px;
  }
  .solution-story__content {
    padding: 70px 0;
  }
  .industry-strip {
    grid-template-columns: 1fr 1fr;
  }
  .project-feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px;
  }
  .project-feature--wide {
    grid-column: span 2;
    grid-row: auto;
  }
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalogue-layout {
    grid-template-columns: 1fr;
  }
  .catalogue-filter {
    position: static;
  }
  .filter-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .filter-help {
    display: none;
  }
  .product-detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .detail-two-col {
    gap: 50px;
  }
  .zone-grid {
    grid-template-columns: 1fr;
  }
  .zone-grid article {
    min-height: 330px;
  }
  .driver-grid {
    gap: 45px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .industry-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-proof__grid {
    grid-template-columns: 1fr;
  }
  .industry-proof__grid > img {
    height: 440px;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-detail-hero__grid {
    grid-template-columns: 1fr;
  }
  .project-detail-hero__grid > img {
    width: calc(100% + (100vw - min(100% - 36px, 760px)) / 2);
  }
  .story-grid {
    gap: 50px;
  }
  .mission-grid h2 {
    font-size: 24px;
  }
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .factory-band__grid {
    grid-template-columns: 1fr;
  }
  .factory-band img {
    width: calc(100% + (100vw - min(100% - 36px, 760px)) / 2);
  }
  .quality-proof__grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .location-section .container {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .admin-workspace {
    grid-template-columns: 205px 1fr;
  }
  .admin-main {
    width: calc(100vw - 250px);
  }
  .admin-actionbar {
    left: 205px;
  }
  .cms-object,
  .cms-object--nested {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 28px);
  }
  .utility-bar p {
    font-size: 10px;
  }
  .brand-mark,
  .brand-mark img {
    width: 145px;
    flex-basis: 145px;
  }
  .hero__content {
    padding: 62px 0 45px;
  }
  .hero__content h1 {
    font-size: 48px;
  }
  .hero__content > p {
    font-size: 15px;
  }
  .hero__actions .button {
    width: 100%;
  }
  .hero__visual {
    margin: 0 -14px;
  }
  .hero__visual > img {
    height: 380px;
  }
  .hero__metric {
    right: 14px;
    bottom: 14px;
    width: 250px;
  }
  .stats-grid > div {
    min-height: 105px;
    padding: 20px;
  }
  .stats-grid strong {
    font-size: 24px;
  }
  .section {
    padding: 66px 0;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .section-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .product-grid,
  .product-grid--three,
  .product-grid--catalogue {
    grid-template-columns: 1fr;
  }
  .product-card__image {
    height: 280px;
  }
  .solution-story__image {
    margin: 0 -14px;
  }
  .solution-story__image img {
    height: 390px;
  }
  .solution-story__content {
    padding: 58px 0;
  }
  .industry-strip {
    grid-template-columns: 1fr;
  }
  .project-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 330px);
  }
  .project-feature--wide {
    grid-column: auto;
  }
  .project-feature--wide .project-feature__body h3 {
    font-size: 28px;
  }
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    padding: 58px 0;
  }
  .page-intro {
    min-height: 350px;
    padding-top: 63px;
  }
  .page-intro h1 {
    font-size: 44px;
  }
  .page-intro > .container > p {
    font-size: 14px;
  }
  .filter-options {
    grid-template-columns: 1fr;
  }
  .product-detail-hero__grid {
    gap: 35px;
  }
  .product-detail-hero h1 {
    font-size: 43px;
  }
  .product-detail-hero__image {
    height: 330px;
  }
  .detail-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .anchor-nav .container {
    gap: 25px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid article {
    min-height: 240px;
  }
  .driver-grid {
    grid-template-columns: 1fr;
  }
  .driver-visual {
    min-height: 380px;
  }
  .driver-specs {
    grid-template-columns: 1fr;
  }
  .industry-page-grid {
    grid-template-columns: 1fr;
  }
  .industry-proof__grid > img {
    height: 340px;
  }
  .industry-proof__grid > div {
    padding: 45px 25px;
  }
  .industry-proof h2 {
    font-size: 36px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-detail-hero h1 {
    font-size: 43px;
  }
  .project-detail-hero__grid > div {
    padding: 45px 0;
  }
  .project-detail-hero__grid > img {
    width: calc(100% + 14px);
    height: 400px;
  }
  .project-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-note .button {
    width: 100%;
    margin-left: 0;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-images {
    min-height: 440px;
  }
  .story-images img:first-child {
    height: 350px;
  }
  .story-images img:last-child {
    height: 210px;
  }
  .story-grid > div:last-child > h2 {
    font-size: 36px;
  }
  .story-timeline {
    grid-template-columns: 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .mission-grid article,
  .mission-grid article + article {
    padding: 0;
    border-left: 0;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .factory-band__grid > div {
    padding: 55px 0;
  }
  .factory-band img {
    width: calc(100% + 14px);
    height: 390px;
  }
  .quality-steps {
    grid-template-columns: 1fr;
  }
  .quality-steps article {
    min-height: 150px;
    padding-left: 0;
  }
  .quality-steps__line {
    right: auto;
    bottom: 0;
    left: 12px;
    width: 1px;
    height: auto;
  }
  .quality-proof__grid > img {
    height: 400px;
  }
  .quality-proof__grid > div {
    min-height: 0;
    padding: 45px 25px;
  }
  .quality-metrics {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-panel {
    padding: 28px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-top > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
  .footer-bottom__right {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .footer-admin-button {
    min-width: 106px;
  }
  .admin-gate__card {
    padding: 30px 24px;
  }
  .admin-header > div:first-child span,
  .admin-header > div:last-child span {
    display: none;
  }
  .admin-header button {
    padding: 0 8px;
  }
  .admin-workspace {
    display: block;
  }
  .admin-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-sidebar__label {
    display: none;
  }
  .admin-sidebar button {
    width: auto;
    flex: 0 0 auto;
    padding: 0 12px;
  }
  .admin-main {
    width: calc(100vw - 28px);
    padding: 28px 0 140px;
  }
  .admin-main__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-editor-card,
  .json-editor,
  .media-manager {
    padding: 15px;
  }
  .admin-actionbar {
    left: 0;
    align-items: stretch;
    flex-direction: column;
    padding: 10px 14px;
  }
  .admin-actionbar > div:first-child {
    display: none;
  }
  .admin-actionbar > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .admin-actionbar button:not(.button) {
    justify-content: center;
  }
  .media-manager__result {
    grid-template-columns: 1fr;
  }
  .media-manager__result img {
    width: 100%;
  }
}

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

.cms-field__hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* SIMTOLITE Content Studio v2 — simplified CMS inspired by the Creator Studio workflow */
/* Admin page scrolling: keep the document scrollable unless the mobile drawer is actually open. */
body.admin-body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
}
body.admin-body.admin-nav-open {
  overflow: hidden;
  touch-action: none;
}

body.admin-nav-open {
  overflow: hidden;
}
.admin-shell--v2 {
  min-height: 100vh;
  background: #f6f7f9;
  color: #172033;
}
.admin-sidebar--v2 {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: 238px;
  height: 100vh;
  padding: 18px 14px;
  overflow-y: auto;
  border-right: 1px solid #e0e5eb;
  background: #ffffff;
}
.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 6px 16px;
  border-bottom: 1px solid #edf0f4;
}
.admin-sidebar__brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.admin-sidebar__brand > div {
  display: grid;
  min-width: 0;
}
.admin-sidebar__brand strong {
  color: #071f4f;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.admin-sidebar__brand small {
  color: #8792a3;
  font-size: 10px;
}
.admin-sidebar__brand > button {
  display: none;
  margin-left: auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #607087;
}
.admin-sidebar--v2 nav {
  display: grid;
  gap: 24px;
  padding: 22px 0 90px;
}
.admin-nav-group {
  display: grid;
  gap: 4px;
}
.admin-nav-group > span {
  margin: 0 9px 6px;
  color: #98a2b1;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-nav-group button,
.admin-sidebar__bottom button {
  display: flex;
  width: 100%;
  min-height: 39px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #56657a;
  text-align: left;
  font-size: 11px;
  font-weight: 720;
}
.admin-nav-group button b {
  font: inherit;
}
.admin-nav-group button:hover,
.admin-nav-group button.active {
  background: #edf4ff;
  color: #0b67f0;
}
.admin-sidebar__bottom {
  position: fixed;
  bottom: 14px;
  left: 14px;
  width: 210px;
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid #edf0f4;
  background: #fff;
}
.admin-sidebar__bottom button:hover {
  background: #f4f6f8;
  color: #071f4f;
}
.admin-stage {
  min-height: 100vh;
  margin-left: 238px;
  padding-bottom: 78px;
}
.admin-header--v2 {
  position: sticky;
  top: 0;
  z-index: 35;
  height: 76px;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid #e0e5eb;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}
.admin-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-header__left > div {
  display: grid;
  gap: 1px;
}
.admin-header__left small {
  color: #95a0af;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.admin-header__left h1 {
  margin: 0;
  color: #071f4f;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.admin-menu-button {
  display: none !important;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 !important;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 9px;
}
.admin-user > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #071f4f;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.admin-user > div {
  display: grid;
}
.admin-user b {
  color: #1b273a;
  font-size: 11px;
}
.admin-user small {
  color: #8995a5;
  font-size: 9px;
}
.admin-main--v2 {
  width: min(1120px, calc(100vw - 294px));
  margin: 0 auto;
  padding: 30px 0 38px;
}
.admin-main__top--v2 {
  align-items: center;
  margin-bottom: 19px;
  padding: 0 2px;
}
.admin-main__top--v2 p {
  max-width: 720px;
  color: #728096;
  font-size: 12px;
  line-height: 1.65;
}
.admin-publish-state span {
  border-radius: 999px;
  padding: 7px 10px;
}
.admin-publish-state .saved {
  background: #e8f7ee;
  color: #23764d;
}
.admin-publish-state .dirty {
  background: #fff2d9;
  color: #966508;
}
.admin-status {
  border-radius: 8px;
  margin-bottom: 18px;
}

.cms-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px;
  border: 1px solid #dfe5ec;
  border-radius: 14px;
  background: linear-gradient(120deg, #ffffff, #f1f6ff);
  box-shadow: 0 10px 35px rgba(17, 35, 68, 0.045);
}
.cms-welcome h2 {
  margin: 7px 0 8px;
  color: #071f4f;
  font-size: 28px;
  letter-spacing: -0.025em;
}
.cms-welcome p {
  max-width: 720px;
  margin: 0;
  color: #728096;
  font-size: 12px;
  line-height: 1.65;
}
.cms-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.cms-stat-grid button {
  display: grid;
  gap: 5px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid #e0e5eb;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  box-shadow: 0 8px 24px rgba(17, 35, 68, 0.035);
}
.cms-stat-grid button:hover {
  border-color: #b9cee9;
  transform: translateY(-1px);
}
.cms-stat-grid span {
  color: #0b67f0;
}
.cms-stat-grid b {
  color: #071f4f;
  font-size: 27px;
  line-height: 1;
}
.cms-stat-grid small {
  color: #8792a3;
  font-size: 10px;
}
.cms-panel,
.cms-quick-panel {
  margin: 16px 0;
  padding: 22px;
  border: 1px solid #e0e5eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 35, 68, 0.035);
}
.cms-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.cms-panel-heading h3 {
  margin: 0 0 4px;
  color: #071f4f;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.cms-panel-heading p {
  margin: 0;
  color: #8490a2;
  font-size: 11px;
  line-height: 1.55;
}
.cms-panel-heading--actions {
  align-items: center;
}
.cms-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cms-quick-grid button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid #e2e7ed;
  border-radius: 9px;
  background: #fafbfc;
  color: #405069;
  text-align: left;
}
.cms-quick-grid button:hover {
  border-color: #bed2ec;
  background: #f5f9ff;
  color: #0b67f0;
}
.cms-quick-grid button > span {
  display: grid;
  gap: 2px;
}
.cms-quick-grid strong {
  color: #1c2a3e;
  font-size: 11px;
}
.cms-quick-grid small {
  color: #8b96a6;
  font-size: 9px;
}

.cms-search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fafbfc;
  color: #8a96a7;
}
.cms-search:focus-within {
  border-color: #8db8ef;
  box-shadow: 0 0 0 3px rgba(11, 103, 240, 0.07);
}
.cms-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1e2a3c;
  font-size: 11px;
}
.entity-list {
  display: grid;
  gap: 8px;
}
.entity-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 9px 10px;
  border: 1px solid #e3e8ee;
  border-radius: 9px;
  background: #fff;
}
.entity-row:hover {
  border-color: #c9d8ea;
  background: #fcfdff;
}
.entity-thumb {
  display: grid;
  width: 58px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: #f1f4f8;
  color: #9aa6b4;
}
.entity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entity-thumb--empty,
.entity-thumb--error {
  background: #f2f4f7;
}
.entity-row__main {
  min-width: 0;
}
.entity-row__title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.entity-row__title strong {
  overflow: hidden;
  color: #17243a;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.entity-row__main small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #8a96a7;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.entity-badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0b67f0;
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}
.entity-badge--muted {
  background: #eef1f4;
  color: #6d7a8e;
}
.entity-row__actions {
  display: flex;
  gap: 6px;
}
.entity-row__actions button,
.small-action,
.back-inline,
.cms-slug-field > button,
.icon-danger,
.danger-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #dce3ea;
  border-radius: 7px;
  background: #fff;
  color: #4e6078;
  font-size: 10px;
  font-weight: 780;
}
.entity-row__actions button:hover,
.small-action:hover,
.back-inline:hover,
.cms-slug-field > button:hover {
  border-color: #b7cce5;
  color: #0b67f0;
  background: #f7faff;
}
.entity-row__actions .danger,
.icon-danger,
.danger-button {
  color: #b84545;
}
.entity-row__actions .danger:hover,
.icon-danger:hover,
.danger-button:hover {
  border-color: #e5bcbc;
  background: #fff7f7;
  color: #b02d2d;
}
.cms-empty,
.repeat-table__empty {
  padding: 26px;
  border: 1px dashed #d8e0e8;
  border-radius: 8px;
  color: #8b96a6;
  text-align: center;
  font-size: 11px;
}

.entity-editor__top {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}
.entity-editor__top .back-inline {
  width: max-content;
}
.entity-editor__top h2 {
  margin: 8px 0 4px;
  color: #071f4f;
  font-size: 27px;
}
.entity-editor__top p {
  margin: 0;
  color: #8190a3;
  font-size: 11px;
}
.cms-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.cms-field--wide {
  grid-column: 1 / -1;
}
.cms-form-grid .cms-field {
  margin-bottom: 15px;
}
.cms-field > span,
.cms-toggle > span {
  font-size: 10px;
}
.cms-field input,
.cms-field textarea {
  border-radius: 7px;
  border-color: #dce3ea;
  background: #fbfcfd;
  color: #1c293c;
}
.cms-field input {
  height: 43px;
}
.cms-field textarea {
  min-height: 92px;
}
.cms-field input:focus,
.cms-field textarea:focus {
  background: #fff;
  border-color: #8db8ef;
  box-shadow: 0 0 0 3px rgba(11, 103, 240, 0.07);
}
.cms-field__hint {
  color: #929dad;
  font-size: 9px;
  line-height: 1.45;
}
.cms-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 11px 12px;
  border: 1px solid #e0e5eb;
  border-radius: 8px;
  background: #fafbfc;
}
.cms-switch > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cms-switch__control {
  position: relative;
  width: 38px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #cfd7e1;
  transition: 0.18s ease;
}
.cms-switch__control::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  content: "";
  transition: 0.18s ease;
}
.cms-switch > input:checked + .cms-switch__control {
  background: #0b67f0;
}
.cms-switch > input:checked + .cms-switch__control::after {
  transform: translateX(16px);
}
.cms-switch > span:last-child {
  display: grid;
  gap: 2px;
}
.cms-switch strong {
  color: #24334a;
  font-size: 10px;
}
.cms-switch small {
  color: #8d98a8;
  font-size: 9px;
}
.cms-slug-field {
  position: relative;
}
.cms-slug-field .cms-field {
  margin-bottom: 15px;
}
.cms-slug-field > button {
  position: absolute;
  right: 6px;
  bottom: 21px;
  min-height: 30px;
  padding: 0 8px;
}
.cms-slug-field .cms-field input {
  padding-right: 92px;
}

.repeat-table {
  display: grid;
  gap: 7px;
}
.repeat-table__head,
.repeat-table__row {
  display: grid;
  gap: 8px;
  align-items: center;
}
.repeat-table__head {
  padding: 0 4px 5px;
  color: #929dad;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.repeat-table__head--models,
.repeat-table__row--models {
  grid-template-columns: 1fr 1.3fr 1.3fr 38px;
}
.repeat-table__head--specs,
.repeat-table__row--specs {
  grid-template-columns: 1.2fr 1.8fr 38px;
}
.repeat-table__row input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dce3ea;
  border-radius: 7px;
  outline: 0;
  background: #fbfcfd;
  color: #213047;
  font-size: 10px;
}
.repeat-table__row input:focus {
  border-color: #8db8ef;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 103, 240, 0.06);
}
.icon-danger {
  width: 38px;
  min-height: 38px;
  padding: 0;
}

.admin-editor-card,
.json-editor,
.media-manager {
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(17, 35, 68, 0.035);
}
#tree-editor > .cms-object {
  gap: 0 16px;
}
#tree-editor .cms-array {
  border-radius: 8px;
  overflow: hidden;
}
#tree-editor .cms-array__heading {
  background: #f8fafc;
}
#tree-editor .cms-array__item {
  border-radius: 7px;
}
#tree-editor .cms-details {
  border-radius: 7px;
  overflow: hidden;
}
.media-manager.cms-panel,
.json-editor.cms-panel {
  padding: 22px;
}
.media-manager__drop {
  min-height: 285px;
  border-radius: 10px;
  background: #fafbfc;
}
.media-manager__result {
  border-radius: 9px;
}
.json-editor textarea {
  height: 560px;
  border-radius: 9px;
}
.advanced-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}
.advanced-actions .button {
  margin: 0;
}

.admin-actionbar--v2 {
  left: 238px;
  min-height: 68px;
  padding: 9px 24px;
  border-top-color: #dde3ea;
  background: rgba(255, 255, 255, 0.97);
}
.admin-actionbar--v2 button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.admin-actionbar--v2 > div:last-child {
  gap: 8px;
}
.admin-backdrop {
  display: none;
}

@media (max-width: 980px) {
  .admin-sidebar--v2 {
    transform: translateX(-105%);
    box-shadow: 25px 0 65px rgba(16, 31, 54, 0.16);
    transition: transform 0.22s ease;
  }
  .admin-sidebar--v2.open {
    transform: translateX(0);
  }
  .admin-sidebar__brand > button {
    display: grid;
  }
  .admin-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(8, 18, 32, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .admin-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }
  .admin-stage {
    margin-left: 0;
  }
  .admin-menu-button {
    display: grid !important;
  }
  .admin-main--v2 {
    width: min(100% - 30px, 940px);
  }
  .admin-actionbar--v2 {
    left: 0;
  }
  .admin-sidebar__bottom {
    position: static;
    width: auto;
    margin-top: 10px;
  }
  .admin-sidebar--v2 nav {
    padding-bottom: 10px;
  }
}

@media (max-width: 720px) {
  .admin-header--v2 {
    height: 68px;
    min-height: 68px;
    padding: 0 14px;
  }
  .admin-header__left h1 {
    font-size: 18px;
  }
  .admin-header__left small {
    display: none;
  }
  .admin-user > div {
    display: none;
  }
  .admin-main--v2 {
    width: calc(100% - 24px);
    padding-top: 20px;
  }
  .admin-main__top--v2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .cms-welcome {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .cms-welcome h2 {
    font-size: 24px;
  }
  .cms-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cms-stat-grid button {
    min-height: 105px;
    padding: 14px;
  }
  .cms-quick-grid {
    grid-template-columns: 1fr;
  }
  .cms-panel {
    padding: 16px;
  }
  .cms-panel-heading--actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cms-panel-heading--actions .button,
  .cms-panel-heading--actions .small-action {
    width: 100%;
  }
  .entity-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }
  .entity-thumb {
    width: 50px;
    height: 50px;
  }
  .entity-row__actions {
    grid-column: 1 / -1;
  }
  .entity-row__actions button {
    flex: 1;
  }
  .cms-form-grid {
    grid-template-columns: 1fr;
  }
  .cms-field--wide {
    grid-column: auto;
  }
  .cms-slug-field + div {
    display: none;
  }
  .repeat-table__head {
    display: none;
  }
  .repeat-table__row--models,
  .repeat-table__row--specs {
    grid-template-columns: 1fr 38px;
    padding: 10px;
    border: 1px solid #e2e7ed;
    border-radius: 8px;
  }
  .repeat-table__row--models input,
  .repeat-table__row--specs input {
    grid-column: 1;
  }
  .repeat-table__row .icon-danger {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
  #tree-editor > .cms-object,
  .cms-object,
  .cms-object--nested {
    grid-template-columns: 1fr;
  }
  .admin-actionbar--v2 {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    padding: 8px 12px;
  }
  .admin-actionbar--v2 > div:first-child {
    display: none;
  }
  .admin-actionbar--v2 > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .admin-actionbar--v2 button {
    justify-content: center;
  }
  .advanced-actions {
    flex-direction: column;
  }
}

/* SIMTOLITE Content Studio v2 — high contrast admin typography */
.admin-shell--v2,
.admin-stage,
.admin-main--v2,
.cms-panel,
.cms-quick-panel,
.admin-actionbar--v2 {
  color: #000;
}
.admin-sidebar__brand strong,
.admin-sidebar__brand small,
.admin-nav-group > span,
.admin-nav-group button,
.admin-sidebar__bottom button,
.admin-header__left small,
.admin-header__left h1,
.admin-user b,
.admin-user small,
.admin-main__top--v2 p,
.cms-welcome h2,
.cms-welcome p,
.cms-stat-grid b,
.cms-stat-grid small,
.cms-panel-heading h3,
.cms-panel-heading p,
.cms-quick-grid button,
.cms-quick-grid strong,
.cms-quick-grid small,
.entity-row__title strong,
.entity-row__main small,
.entity-editor__top h2,
.entity-editor__top p,
.cms-field > span,
.cms-toggle > span,
.cms-field__hint,
.cms-switch strong,
.cms-switch small,
.repeat-table__head,
.cms-empty,
.repeat-table__empty,
.admin-actionbar--v2 span,
.admin-actionbar--v2 small {
  color: #000;
}
.cms-search,
.cms-search input,
.cms-field input,
.cms-field textarea,
.repeat-table__row input {
  color: #000;
}
.cms-search input::placeholder,
.cms-field input::placeholder,
.cms-field textarea::placeholder,
.repeat-table__row input::placeholder,
.json-editor textarea::placeholder {
  color: #4a4a4a;
  opacity: 1;
}
.entity-badge--muted {
  color: #202020;
}
.entity-row__actions button,
.small-action,
.back-inline,
.cms-slug-field > button {
  color: #111;
}
.admin-sidebar__brand > button,
.admin-menu-button {
  color: #111;
}

/* Content Studio v2.1 — mobile drawer reset + native browser-history UX */
.admin-sidebar--v2 {
  display: block;
  flex-direction: initial;
  overflow-x: hidden;
  border-bottom: 0;
}
.admin-main__top--v2 {
  touch-action: pan-y;
}
.admin-sidebar--v2 nav {
  min-width: 0;
}
.admin-nav-group button {
  min-width: 0;
}
.admin-nav-group button b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

@media (max-width: 980px) {
  .admin-sidebar--v2 {
    display: flex;
    width: min(86vw, 320px);
    max-width: 320px;
    height: 100dvh;
    padding: 0;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: hidden;
    border-right: 1px solid #d9e0e8;
    border-bottom: 0;
    border-radius: 0 18px 18px 0;
    background: #fff;
    box-shadow: 24px 0 70px rgba(12, 27, 48, 0.22);
  }
  .admin-sidebar__brand {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-height: 72px;
    padding: 11px 14px 11px 16px;
    border-bottom: 1px solid #e8edf2;
    background: #fff;
  }
  .admin-sidebar__brand img {
    width: 40px;
    height: 40px;
  }
  .admin-sidebar__brand strong {
    color: #000;
    font-size: 14px;
  }
  .admin-sidebar__brand small {
    color: #3e4650;
    font-size: 10px;
  }
  .admin-sidebar__brand > button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    color: #111;
  }
  .admin-sidebar__brand > button:active {
    background: #eef2f6;
  }
  .admin-sidebar--v2 nav {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px 12px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .admin-nav-group {
    display: grid;
    gap: 3px;
    margin-bottom: 20px;
  }
  .admin-nav-group:last-child {
    margin-bottom: 4px;
  }
  .admin-nav-group > span {
    margin: 0 10px 7px;
    color: #4c5561;
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .admin-nav-group button,
  .admin-sidebar__bottom button {
    display: flex;
    width: 100%;
    min-height: 45px;
    flex: none;
    gap: 11px;
    padding: 0 11px;
    border-radius: 9px;
    color: #111;
    font-size: 12px;
    font-weight: 750;
  }
  .admin-nav-group button svg,
  .admin-sidebar__bottom button svg {
    flex: 0 0 auto;
  }
  .admin-nav-group button.active {
    position: relative;
    background: #eaf3ff;
    color: #075ecf;
  }
  .admin-nav-group button.active::before {
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #0b67f0;
    content: "";
  }
  .admin-sidebar__bottom {
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 12px max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid #e8edf2;
    background: #fff;
  }
  .admin-backdrop {
    background: rgba(6, 14, 26, 0.48);
    backdrop-filter: blur(1.5px);
  }
}

@media (max-width: 420px) {
  .admin-sidebar--v2 {
    width: min(88vw, 330px);
    max-width: 330px;
  }
}

/* ImageKit Media Library integration */
body.imagekit-library-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.imagekit-library-overlay[hidden] {
  display: none !important;
}
.imagekit-library-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #eef2f6;
  isolation: isolate;
  overscroll-behavior: contain;
}
.imagekit-library-overlay.is-open {
  display: block;
}
.imagekit-library-window {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.imagekit-library-header {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: max(10px, env(safe-area-inset-top))
    max(14px, env(safe-area-inset-right)) 10px
    max(14px, env(safe-area-inset-left));
  border-bottom: 1px solid #e2e7ed;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 35, 68, 0.03);
}
.imagekit-library-header__title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}
.imagekit-library-header__title > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}
.imagekit-library-header__title strong {
  overflow: hidden;
  color: #111827;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imagekit-library-header__title small {
  color: #7b8797;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.imagekit-library-header__mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: #071f4f;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.imagekit-library-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #f8fafc;
  color: #26364c;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.imagekit-library-close:hover,
.imagekit-library-close:focus-visible {
  border-color: #b9c9dc;
  background: #eef4fb;
  outline: none;
}
.imagekit-library-close span {
  display: block;
  margin-top: -2px;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}
.imagekit-library-body {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
#imagekit-media-library {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff;
}
#imagekit-media-library > *,
#imagekit-media-library iframe,
.simtolite-imagekit-widget {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
#imagekit-media-library iframe {
  display: block !important;
}

.cms-media-field {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}
.cms-media-field--wide {
  grid-column: 1 / -1;
}
.cms-media-field > .cms-field {
  margin: 0;
}
.imagekit-pick-button {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #cfd8e3;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.imagekit-pick-button:hover {
  border-color: #7da9df;
  background: #f5f9ff;
  color: #075ecf;
}
.imagekit-manager {
  display: grid;
  gap: 18px;
}
.imagekit-manager__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.imagekit-manager__hero > svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 12px;
  background: #eaf3ff;
  color: #075ecf;
}
.imagekit-manager__hero h2 {
  margin: 2px 0 6px;
  color: #0f172a;
  font-size: clamp(21px, 2vw, 28px);
}
.imagekit-manager__hero p {
  max-width: 760px;
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
.imagekit-manager__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.imagekit-manager__notes > div {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}
.imagekit-manager__notes svg {
  flex: 0 0 auto;
  color: #075ecf;
}
.imagekit-manager__notes span {
  display: grid;
  gap: 4px;
}
.imagekit-manager__notes strong {
  color: #111827;
  font-size: 13px;
}
.imagekit-manager__notes small {
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
}
.imagekit-manager__result {
  margin-top: 0;
}

@media (max-width: 760px) {
  .imagekit-library-header {
    min-height: 56px;
    gap: 10px;
    padding-bottom: 8px;
  }
  .imagekit-library-header__mark {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }
  .imagekit-library-header__title strong {
    font-size: 14px;
  }
  .imagekit-library-close {
    width: 38px;
    height: 38px;
  }
  .imagekit-manager__hero {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
  }
  .imagekit-manager__hero .button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .imagekit-manager__notes {
    grid-template-columns: 1fr;
  }
  .imagekit-pick-button {
    width: 100%;
  }
}

/* =========================================================
   2026-08-10 desktop-on-mobile layout fixes
   ========================================================= */

/* Respect the HTML hidden attribute even when component rules declare display. */
.mega-menu[hidden],
.mobile-menu[hidden],
.search-overlay[hidden] {
  display: none !important;
}

/* Prevent CMS children from creating a document-level horizontal scroll area. */
body.admin-body,
body.admin-body #root,
.admin-shell--v2,
.admin-stage,
.admin-main--v2,
.cms-panel,
.cms-quick-panel,
.entity-list,
.entity-row,
.entity-row__main,
.cms-form-grid,
.cms-object,
.cms-object--nested {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.admin-body,
body.admin-body #root,
.admin-shell--v2,
.admin-stage {
  overflow-x: clip;
}

/* Chrome's “Desktop site” on a phone commonly exposes a ~980px CSS viewport.
   At that size the desktop entity row's trailing action column can widen the
   whole document. Switch rows to the compact two-column layout earlier. */
@media (max-width: 1100px) {
  .admin-main--v2 {
    width: min(calc(100% - 30px), 940px);
  }

  .entity-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .entity-row__actions {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }

  .entity-row__actions button {
    flex: 1 1 120px;
    min-width: 0;
  }

  .entity-row__title {
    flex-wrap: wrap;
  }

  .entity-row__title strong,
  .entity-row__main small {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cms-panel-heading,
  .cms-panel-heading--actions,
  .admin-main__top--v2 {
    min-width: 0;
  }

  .cms-panel-heading > *,
  .admin-main__top--v2 > * {
    min-width: 0;
    max-width: 100%;
  }
}

/* Keep the phone/tablet drawer UX even when the mobile browser asks the page
   for a desktop viewport. Pointer capability survives Chrome's Desktop-site
   toggle, so this targets the actual touch device rather than only CSS width. */
@media (hover: none) and (pointer: coarse) {
  body.admin-body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .admin-sidebar--v2 {
    display: flex;
    width: min(86vw, 320px);
    max-width: 320px;
    height: 100dvh;
    padding: 0;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: hidden;
    border-right: 1px solid #d9e0e8;
    border-bottom: 0;
    border-radius: 0 18px 18px 0;
    background: #fff;
    box-shadow: 24px 0 70px rgba(12, 27, 48, 0.22);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
  }

  .admin-sidebar--v2.open {
    transform: translateX(0);
  }

  .admin-sidebar__brand > button {
    display: grid;
  }

  .admin-sidebar--v2 nav {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px 12px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .admin-sidebar__bottom {
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 12px max(12px, env(safe-area-inset-bottom));
  }

  .admin-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(6, 14, 26, 0.48);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(1.5px);
    transition: opacity 0.2s ease;
  }

  .admin-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-stage {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .admin-menu-button {
    display: grid !important;
  }

  .admin-main--v2 {
    width: calc(100% - 24px);
    max-width: 940px;
    padding-top: 20px;
  }

  .admin-main__top--v2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .admin-actionbar--v2 {
    left: 0;
  }

  .entity-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .entity-thumb {
    width: 50px;
    height: 50px;
  }

  .entity-row__actions {
    grid-column: 1 / -1;
  }

  .entity-row__title {
    flex-wrap: wrap;
  }

  .entity-row__title strong,
  .entity-row__main small {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cms-search,
  .cms-search input,
  .cms-field,
  .cms-field input,
  .cms-field textarea {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* =========================================================
   2026-08-11 page-image CMS organisation
   ========================================================= */
.page-media-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.page-media-pages.cms-panel {
  position: sticky;
  top: 88px;
  margin-top: 16px;
  padding: 16px;
}

.page-media-pages__heading {
  padding: 3px 4px 13px;
}

.page-media-pages__heading h2,
.page-media-header h2 {
  margin: 5px 0 4px;
  color: #101828;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.page-media-pages__heading p,
.page-media-header p {
  margin: 0;
  color: #7b8798;
  font-size: 10px;
  line-height: 1.5;
}

.page-media-pages__list {
  display: grid;
  gap: 5px;
}

.page-media-pages__list button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #657186;
  text-align: left;
  cursor: pointer;
}

.page-media-pages__list button:hover {
  border-color: #dce6f2;
  background: #f8fbff;
  color: #1f5fba;
}

.page-media-pages__list button.active {
  border-color: #c9ddf7;
  background: #eef6ff;
  color: #075ecf;
}

.page-media-pages__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  background: #f1f4f8;
  color: #66758a;
}

.page-media-pages__list button.active .page-media-pages__icon {
  background: #dcecff;
  color: #075ecf;
}

.page-media-pages__list button > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.page-media-pages__list strong {
  overflow: hidden;
  color: #1d2939;
  font-size: 10px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-media-pages__list small {
  color: #98a2b3;
  font-size: 8px;
}

.page-media-workspace {
  min-width: 0;
}

.page-media-header.cms-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  margin-bottom: 12px;
}

.page-media-count {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f4f8;
  color: #536174;
  font-size: 9px;
  font-weight: 800;
}

.page-media-assets {
  display: grid;
  gap: 12px;
  padding-bottom: 10px;
}

.page-media-asset {
  display: grid;
  grid-template-columns: minmax(210px, 29%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e0e5eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 35, 68, 0.035);
}

.page-media-asset__preview {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #edf1f5;
}

.page-media-asset__preview img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.page-media-asset__preview.is-error::before {
  content: "Preview unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #8b96a6;
  font-size: 10px;
}

.page-media-asset__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  color: #8b96a6;
  font-size: 10px;
}

.page-media-asset__number,
.page-media-asset__source {
  position: absolute;
  top: 10px;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #263244;
  font-size: 8px;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.page-media-asset__number {
  left: 10px;
}

.page-media-asset__source {
  right: 10px;
}

.page-media-asset__editor {
  min-width: 0;
  padding: 19px 20px 18px;
}

.page-media-asset__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.page-media-asset__heading h3 {
  margin: 0 0 4px;
  color: #172033;
  font-size: 16px;
}

.page-media-asset__heading p {
  margin: 0;
  color: #98a2b3;
  font-size: 9px;
}

.page-media-asset__heading code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #f2f4f7;
  color: #667085;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
}

.page-media-fields {
  align-items: start;
}

.page-media-fields .cms-media-field,
.page-media-fields .cms-field {
  min-width: 0;
}

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

  .page-media-pages.cms-panel {
    position: static;
    top: auto;
  }

  .page-media-pages__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-media-pages__list button {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .page-media-pages__list button > svg {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-media-pages__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-media-asset {
    grid-template-columns: 1fr;
  }

  .page-media-asset__preview,
  .page-media-asset__preview img {
    min-height: 210px;
    max-height: 300px;
  }

  .page-media-header.cms-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .page-media-pages__list {
    grid-template-columns: 1fr;
  }

  .page-media-asset__editor {
    padding: 16px;
  }
}
