/*
Theme Name: CE Compass Manufacturer Market Entry
Theme URI: https://example.com/
Author: CE Compass
Author URI: https://example.com/
Description: A serious company profile theme for CE Compass, focused on OEM manufacturers entering Western ecommerce, wholesale, and retail channels.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: ce-compass-manufacturer
*/

:root {
  --cec-ink: #11171f;
  --cec-ink-2: #1b2530;
  --cec-graphite: #151b23;
  --cec-graphite-2: #202933;
  --cec-paper: #f6f2e8;
  --cec-paper-2: #ebe4d5;
  --cec-white: #ffffff;
  --cec-muted: #69727e;
  --cec-muted-dark: #aeb7c2;
  --cec-line: #d9d5ca;
  --cec-line-dark: rgba(255, 255, 255, 0.14);
  --cec-blue: #7ab8ff;
  --cec-green: #d7ff72;
  --cec-green-dark: #a4cb38;
  --cec-max: 1180px;
  --cec-radius: 6px;
  --cec-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cec-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cec-paper);
  color: var(--cec-ink);
  font-family: var(--cec-font);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 23, 31, 0.94);
  border-bottom: 1px solid var(--cec-line-dark);
  color: var(--cec-white);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.section__inner {
  width: min(calc(100% - 40px), var(--cec-max));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1;
}

.brand__mark {
  width: 38px;
  height: 38px;
  color: var(--cec-green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 660;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--cec-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cec-line-dark);
  border-radius: var(--cec-radius);
  background: transparent;
  color: var(--cec-white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(138deg, #11171f 0%, #171f29 48%, #0d1218 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--cec-white);
}

.hero--motion {
  isolation: isolate;
}

.hero--motion::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 23, 31, 0.96) 0%, rgba(17, 23, 31, 0.82) 44%, rgba(17, 23, 31, 0.42) 100%),
    linear-gradient(180deg, rgba(17, 23, 31, 0.16) 0%, rgba(17, 23, 31, 0.92) 100%);
  content: "";
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(132deg, #11171f 0%, #192330 48%, #090d12 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.hero-motion__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.82) contrast(1.06);
  opacity: 0.58;
}

.hero-motion::before {
  position: absolute;
  inset: -25%;
  background:
    linear-gradient(120deg, transparent 18%, rgba(122, 184, 255, 0.12) 30%, transparent 44%),
    linear-gradient(300deg, transparent 30%, rgba(215, 255, 114, 0.1) 45%, transparent 58%);
  content: "";
  filter: blur(20px);
  opacity: 0.72;
  transform: translate3d(-8%, 0, 0);
  animation: motion-sweep 18s ease-in-out infinite alternate;
}

.hero-motion__film {
  position: absolute;
  width: 46vw;
  min-width: 520px;
  height: 30vw;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.015));
  background-size: 34px 34px, 34px 34px, auto;
  opacity: 0.7;
  transform: rotate(-8deg);
}

.hero-motion__film--one {
  top: 10%;
  right: -12%;
  animation: film-drift-one 20s ease-in-out infinite alternate;
}

.hero-motion__film--two {
  right: 12%;
  bottom: -16%;
  opacity: 0.42;
  transform: rotate(7deg);
  animation: film-drift-two 24s ease-in-out infinite alternate;
}

.hero-motion__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.motion-route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.2;
  stroke-dasharray: 18 18;
  animation: route-flow 14s linear infinite;
}

.motion-route--blue {
  stroke: rgba(122, 184, 255, 0.8);
}

.motion-route--green {
  stroke: rgba(215, 255, 114, 0.68);
  animation-duration: 17s;
  animation-direction: reverse;
}

.motion-route--muted {
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.4;
  animation-duration: 22s;
}

.motion-dot {
  fill: var(--cec-green);
  filter: drop-shadow(0 0 14px rgba(215, 255, 114, 0.5));
  opacity: 0.82;
  animation: dot-pulse 3.8s ease-in-out infinite;
}

.motion-dot--two {
  fill: var(--cec-blue);
  animation-delay: 0.8s;
}

.motion-dot--three {
  animation-delay: 1.6s;
}

.motion-panel {
  position: absolute;
  width: min(250px, 24vw);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--cec-radius);
  padding: 18px;
  background: rgba(17, 23, 31, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  animation: panel-float 9s ease-in-out infinite alternate;
}

.motion-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.motion-panel strong {
  display: block;
  margin-top: 9px;
  color: var(--cec-white);
  font-size: 1.02rem;
  line-height: 1.2;
}

.motion-panel--factory {
  top: 19%;
  right: 28%;
}

.motion-panel--inventory {
  top: 44%;
  right: 8%;
  animation-delay: 1.3s;
}

.motion-panel--retail {
  right: 22%;
  bottom: 15%;
  animation-delay: 2.1s;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 76px);
  padding: 68px 0 56px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.75rem, 5.5vw, 5.35rem);
  font-weight: 790;
  letter-spacing: 0;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.75rem, 6.2vw, 6rem);
  font-weight: 790;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero__lead {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cec-green);
  border-radius: var(--cec-radius);
  padding: 12px 18px;
  background: var(--cec-green);
  color: var(--cec-ink);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--cec-blue);
  background: var(--cec-blue);
  transform: translateY(-1px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--cec-white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--cec-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cec-white);
}

.operating-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--cec-line-dark);
  border-radius: var(--cec-radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: var(--cec-shadow);
  backdrop-filter: blur(10px);
}

.hero-photo-panel {
  align-self: end;
  overflow: hidden;
  margin: 0 0 70px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--cec-radius);
  background: rgba(17, 23, 31, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-photo-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.hero-photo-panel .visual-table {
  position: static;
}

.route-lines {
  position: absolute;
  inset: 38px 24px 130px;
  width: calc(100% - 48px);
  height: calc(100% - 168px);
  opacity: 0.86;
}

.visual-grid {
  position: absolute;
  inset: 34px 30px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  z-index: 2;
}

.visual-node {
  min-height: 102px;
  border: 1px solid var(--cec-line-dark);
  border-radius: var(--cec-radius);
  padding: 16px;
  background: rgba(17, 23, 31, 0.8);
}

.visual-node span,
.visual-table span,
.signal-band span,
.operating-rows span,
.table-frame span,
.contact-method span,
.problem-list span {
  display: block;
  color: var(--cec-muted-dark);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.visual-node strong {
  display: block;
  margin-top: 10px;
  color: var(--cec-white);
  font-size: 1rem;
  line-height: 1.2;
}

.visual-table {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--cec-line-dark);
  background: rgba(10, 14, 19, 0.74);
}

.visual-table div {
  min-height: 112px;
  border-right: 1px solid var(--cec-line-dark);
  padding: 20px;
}

.visual-table div:last-child {
  border-right: 0;
}

.visual-table strong {
  display: block;
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.28;
}

.signal-band {
  border-bottom: 1px solid var(--cec-line);
  background: var(--cec-white);
}

.signal-band__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--cec-line);
}

.signal-band__inner div {
  min-height: 148px;
  padding: 28px;
  background: var(--cec-white);
}

.signal-band strong {
  display: block;
  color: var(--cec-ink);
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1;
}

.signal-band span {
  max-width: 320px;
  margin-top: 14px;
  color: var(--cec-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: none;
}

.section {
  padding: 92px 0;
  background: var(--cec-white);
}

.section--paper {
  background: var(--cec-paper);
}

.section--ink {
  background: var(--cec-ink);
  color: var(--cec-white);
}

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

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.6fr);
  gap: 62px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.fit-layout h2,
.contact-panel h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading p,
.fit-layout p,
.contact-panel p,
.prose p {
  margin: 0;
  color: var(--cec-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.section--ink .fit-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.68fr);
  gap: 70px;
  align-items: start;
}

.media-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(420px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.media-story .section-heading {
  position: sticky;
  top: 112px;
}

.media-story .section-heading p {
  margin-top: 24px;
}

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

.asset-card {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  border-radius: var(--cec-radius);
  background: var(--cec-ink);
  color: var(--cec-white);
}

.asset-card--wide {
  grid-column: 1 / -1;
}

.asset-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.01);
}

.asset-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 23, 31, 0.06), rgba(17, 23, 31, 0.72));
  content: "";
}

.asset-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.asset-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.asset-card strong {
  display: block;
  max-width: 560px;
  margin-top: 8px;
  color: var(--cec-white);
  font-size: clamp(1.18rem, 2.2vw, 1.75rem);
  line-height: 1.1;
}

.problem-list {
  display: grid;
  border-top: 1px solid var(--cec-line);
}

.problem-list div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--cec-line);
  padding: 22px 0;
}

.problem-list span {
  color: var(--cec-ink);
}

.problem-list p {
  margin: 0;
  color: var(--cec-ink-2);
  font-size: 1rem;
  line-height: 1.62;
}

.operating-rows {
  display: grid;
  border: 1px solid var(--cec-line);
  border-radius: var(--cec-radius);
  background: var(--cec-white);
}

.operating-rows article {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 0.75fr;
  gap: 34px;
  align-items: start;
  min-height: 168px;
  border-bottom: 1px solid var(--cec-line);
  padding: 30px;
}

.operating-rows article:last-child {
  border-bottom: 0;
}

.operating-rows span,
.table-frame span {
  color: var(--cec-muted);
}

.operating-rows h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.operating-rows p,
.table-frame p {
  margin: 0;
  color: var(--cec-muted);
  font-size: 0.97rem;
  line-height: 1.62;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.66fr);
  gap: 74px;
  align-items: start;
}

.fit-layout p {
  margin-top: 24px;
}

.fit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--cec-line-dark);
}

.fit-list li {
  border-bottom: 1px solid var(--cec-line-dark);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  font-weight: 620;
}

.capability-table .section-heading--split {
  margin-bottom: 36px;
}

.table-frame {
  display: grid;
  border: 1px solid var(--cec-line);
  border-radius: var(--cec-radius);
  background: var(--cec-white);
}

.table-frame div {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.55fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--cec-line);
  padding: 28px 30px;
}

.table-frame div:last-child {
  border-bottom: 0;
}

.table-frame strong {
  color: var(--cec-ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: 56px;
  align-items: center;
  border: 1px solid var(--cec-line);
  border-radius: var(--cec-radius);
  padding: clamp(28px, 5vw, 58px);
  background: var(--cec-paper);
}

.contact-panel p {
  max-width: 680px;
  margin-top: 18px;
}

.contact-method {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-method span {
  color: var(--cec-muted);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--cec-ink);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--cec-white);
}

.page-hero__inner {
  padding: 96px 0 82px;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.85fr);
  gap: 70px;
}

.prose {
  max-width: 820px;
}

.prose p + p {
  margin-top: 18px;
}

.site-footer {
  background: var(--cec-ink);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 0.5fr minmax(280px, 0.72fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.brand--footer .brand__text {
  color: var(--cec-white);
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
}

.site-footer a {
  font-weight: 650;
}

@keyframes motion-sweep {
  from {
    transform: translate3d(-10%, 2%, 0) rotate(0.001deg);
  }

  to {
    transform: translate3d(8%, -3%, 0) rotate(0.001deg);
  }
}

@keyframes film-drift-one {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  to {
    transform: translate3d(-36px, 24px, 0) rotate(-5deg);
  }
}

@keyframes film-drift-two {
  from {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }

  to {
    transform: translate3d(44px, -18px, 0) rotate(4deg);
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -360;
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.84);
  }

  45% {
    opacity: 1;
    transform: scale(1.24);
  }
}

@keyframes panel-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .hero-motion::before,
  .hero-motion__film,
  .motion-route,
  .motion-dot,
  .motion-panel {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero__inner,
  .problem-layout,
  .fit-layout,
  .split-copy,
  .media-story__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 58px;
  }

  .motion-panel--factory {
    right: 20%;
  }

  .motion-panel--inventory {
    right: 4%;
  }

  .motion-panel--retail {
    right: 18%;
  }

  .operating-visual {
    min-height: 500px;
  }

  .hero-photo-panel {
    align-self: stretch;
    margin-bottom: 24px;
  }

  .media-story .section-heading {
    position: static;
  }

  .section-heading--split,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .operating-rows article,
  .table-frame div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .section__inner {
    width: min(calc(100% - 28px), var(--cec-max));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--cec-line-dark);
    border-radius: var(--cec-radius);
    padding: 8px;
    background: rgba(17, 23, 31, 0.98);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero__inner {
    gap: 38px;
    padding: 52px 0 42px;
  }

  .hero--motion::after {
    background:
      linear-gradient(180deg, rgba(17, 23, 31, 0.9) 0%, rgba(17, 23, 31, 0.72) 48%, rgba(17, 23, 31, 0.88) 100%);
  }

  .hero-motion__film {
    width: 100vw;
    min-width: 360px;
    height: 360px;
    min-height: 260px;
  }

  .hero-motion__film--one {
    top: 8%;
    right: -42%;
  }

  .motion-panel {
    display: none;
  }

  .motion-route {
    stroke-width: 1.7;
  }

  .hero-photo-panel img {
    height: 230px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .operating-visual {
    min-height: 560px;
  }

  .visual-grid,
  .visual-table,
  .signal-band__inner,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .asset-card--wide {
    grid-column: auto;
  }

  .asset-card {
    min-height: 280px;
  }

  .visual-grid {
    inset: 24px 20px auto;
  }

  .visual-node {
    min-height: 82px;
  }

  .route-lines {
    inset: 282px 14px 214px;
    width: calc(100% - 28px);
    height: 110px;
  }

  .visual-table div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--cec-line-dark);
    padding: 16px 20px;
  }

  .visual-table div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .problem-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading h2,
  .fit-layout h2,
  .contact-panel h2,
  .split-copy h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .signal-band__inner div {
    min-height: auto;
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1rem;
  }

  .operating-visual {
    min-height: 590px;
  }
}
