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

:root {
  --blue: #0b5cab;
  --blue-dark: #003b7a;
  --ink: #111827;
  --muted: #5b6472;
  --line: #dce3ec;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --shadow: 0 24px 70px rgba(15, 31, 55, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 92, 171, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 92, 171, 0.028) 1px, transparent 1px);
  background-size: 84px 84px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 227, 236, 0.78);
  box-shadow: 0 8px 26px rgba(15, 31, 55, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), #7cc8ef, transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: header-line 1.2s ease 0.25s forwards;
}

.site-header.is-scrolled,
.site-header.is-open {
  box-shadow: 0 12px 34px rgba(15, 31, 55, 0.12);
  border-color: rgba(188, 202, 219, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(296px, 50vw);
  min-width: 176px;
  min-height: 58px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 54px;
  transition: transform 0.2s ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 14px;
  font-weight: 800;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 150px clamp(22px, 5vw, 72px) 96px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 9s ease forwards;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgba(53, 185, 255, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(0, 17, 38, 0.9), rgba(0, 45, 90, 0.58) 56%, rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
}

.hero-visual {
  position: absolute;
  right: clamp(24px, 6vw, 88px);
  top: 24%;
  z-index: 2;
  width: min(390px, 32vw);
}

.command-panel {
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.54);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  animation: product-float 5.5s ease-in-out infinite;
}

.panel-header,
.panel-metric,
.panel-list {
  display: flex;
  align-items: center;
}

.panel-header {
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 8px rgba(57, 217, 138, 0.12);
}

.panel-metric {
  justify-content: space-between;
  margin-top: 22px;
}

.panel-metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.panel-metric strong {
  color: #8bcdf1;
  font-size: 42px;
  line-height: 1;
}

.panel-progress {
  height: 8px;
  margin: 18px 0 22px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-progress span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #35b9ff, #8bcdf1, #39d98a);
  animation: progress-breathe 3s ease-in-out infinite;
}

.panel-list {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.panel-list span {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-enter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h1 {
  animation-delay: 0.12s;
}

.hero-copy {
  animation-delay: 0.22s;
}

.hero-actions {
  animation-delay: 0.32s;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8cc9ff;
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 900;
  max-width: 760px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 59, 122, 0.18);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(680px, calc(100% - 44px));
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(26px);
  opacity: 0;
  animation: panel-enter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.hero-panel div {
  position: relative;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.hero-panel div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-panel div:hover::before {
  transform: scaleX(1);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.network-stats strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.hero-panel span,
.network-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 22px;
}

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

.section-heading h2,
.feature-copy h2 {
  max-width: 640px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}

.section-heading h2::after,
.feature-copy h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--blue), #8bcdf1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease;
}

.is-visible .section-heading h2::after,
.is-visible .feature-copy h2::after {
  transform: scaleX(1);
}

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

.business-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 92, 171, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.business-card:hover {
  z-index: 2;
  background: var(--soft);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.business-card:hover::before {
  opacity: 1;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-topline img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.business-card:hover .card-topline img {
  transform: rotate(-8deg) scale(1.08);
}

.card-topline span {
  color: var(--blue);
  font-weight: 900;
}

.business-card h3 {
  margin: 70px 0 16px;
  font-size: 22px;
  font-weight: 900;
}

.business-card p,
.feature-copy p {
  color: var(--muted);
  font-size: 16px;
}

.workflow-section {
  padding-top: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 52px rgba(15, 31, 55, 0.08);
}

.workflow-grid article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  background: #fff;
}

.workflow-grid article::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #8bcdf1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.workflow-grid article:hover::after {
  transform: scaleX(1);
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.workflow-grid h3 {
  margin: 40px 0 14px;
  font-size: 21px;
  font-weight: 900;
}

.workflow-grid p {
  color: var(--muted);
  font-size: 15px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  background: var(--soft);
}

.feature-image {
  height: 560px;
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.feature-band.is-visible .feature-image img,
.feature-image:hover img {
  transform: scale(1.055);
}

.feature-copy {
  padding: 70px clamp(28px, 7vw, 90px);
}

.feature-copy h2 {
  margin: 16px 0 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 10px;
}

.access-section {
  padding: 96px 22px;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.92), rgba(0, 59, 122, 0.86)),
    url("assets/muntatge_worldmap21.webp") center/cover;
}

.access-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  color: #fff;
}

.access-inner .eyebrow {
  color: #8bcdf1;
}

.access-inner h2 {
  max-width: 700px;
  margin: 16px 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.access-inner p:last-child {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.network-section {
  padding-bottom: 120px;
}

.network-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
}

.network-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(4, 15, 31, 0.18), rgba(0, 20, 47, 0.32)),
    url("assets/muntatge_worldmap21.webp") center/cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), var(--shadow);
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.network-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 45%, rgba(139, 205, 241, 0.24), transparent 35%);
}

.route-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.route-line,
.route-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-line {
  stroke: rgba(226, 244, 255, 0.68);
  stroke-width: 2.2;
}

.route-main {
  stroke-width: 3;
}

.route-flow {
  stroke: #35b9ff;
  stroke-width: 4;
  stroke-dasharray: 18 230;
  filter: drop-shadow(0 0 7px rgba(53, 185, 255, 0.9));
  animation: route-flow 4s linear infinite;
}

.flow-two {
  animation-delay: 0.9s;
}

.flow-three {
  animation-delay: 1.8s;
}

.map-node {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 10px 12px 10px 34px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.62);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.map-node strong,
.map-node small {
  display: block;
}

.map-node strong {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}

.map-node small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.map-status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.62);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.node-canada {
  top: 16%;
  left: 23%;
}

.node-italy {
  top: 39%;
  left: 47%;
}

.node-poland {
  top: 30%;
  left: 51%;
}

.node-lebanon {
  top: 43%;
  left: 57%;
}

.node-gcc {
  top: 50%;
  left: 62%;
}

.node-india {
  top: 55%;
  left: 74%;
}

.node-korea {
  top: 40%;
  left: 85%;
}

.map-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 6px rgba(57, 217, 138, 0.16);
  animation: status-pulse 1.8s ease-in-out infinite;
}

.pin {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.18);
  animation: pin-pulse 2.4s ease-in-out infinite;
  transform: translateY(-50%);
}

.network-stats {
  display: grid;
  gap: 16px;
}

.network-stats div {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.network-stats div:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 40px rgba(15, 31, 55, 0.1);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 46px clamp(22px, 5vw, 72px);
  color: #fff;
  background: #07111f;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.business-card,
.network-stats div,
.workflow-grid article {
  opacity: 0;
  transform: translateY(26px);
}

.is-visible .business-card,
.is-visible .network-stats div,
.is-visible .workflow-grid article {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.is-visible .business-card:nth-child(2),
.is-visible .network-stats div:nth-child(2),
.is-visible .workflow-grid article:nth-child(2) {
  transition-delay: 0.08s;
}

.is-visible .business-card:nth-child(3),
.is-visible .network-stats div:nth-child(3),
.is-visible .workflow-grid article:nth-child(3) {
  transition-delay: 0.16s;
}

.is-visible .business-card:nth-child(4),
.is-visible .workflow-grid article:nth-child(4) {
  transition-delay: 0.24s;
}

.is-visible .workflow-grid article:nth-child(5) {
  transition-delay: 0.32s;
}

.is-visible .workflow-grid article:nth-child(6) {
  transition-delay: 0.4s;
}

.is-visible .business-card:hover {
  transform: translateY(-6px);
}

.is-visible .network-stats div:hover {
  transform: translateX(6px);
}

@keyframes header-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes progress-breathe {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.04);
  }
}

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

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(57, 217, 138, 0.16);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(57, 217, 138, 0.02);
  }
}

.site-footer strong {
  font-size: 22px;
  font-weight: 900;
}

.footer-logo {
  width: min(260px, 68vw);
  margin-bottom: 14px;
}

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

.copyright {
  font-size: 13px;
}

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

  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 24px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 31, 55, 0.08);
  }

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

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

  .site-nav a::after {
    bottom: 10px;
  }

  .hero {
    min-height: 660px;
    padding-top: 130px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 420px);
    margin-top: 36px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .hero {
    display: block;
  }

  .business-grid,
  .workflow-grid,
  .feature-band,
  .network-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-image {
    height: 380px;
  }

  .network-map {
    min-height: 500px;
  }

  .map-node {
    min-width: 128px;
  }

  .node-canada {
    top: 15%;
    left: 16%;
  }

  .node-italy {
    top: 38%;
    left: 38%;
  }

  .node-poland {
    top: 28%;
    left: 44%;
  }

  .node-lebanon {
    top: 45%;
    left: 50%;
  }

  .node-gcc {
    top: 53%;
    left: 56%;
  }

  .node-india {
    top: 61%;
    left: 63%;
  }

  .node-korea {
    top: 39%;
    left: 70%;
  }
}

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

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .site-nav {
    top: 72px;
  }

  .brand {
    min-width: 148px;
    width: 178px;
    min-height: 46px;
  }

  .brand img {
    max-height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 122px 18px 70px;
  }

  .command-panel {
    padding: 18px;
    border-radius: 12px;
  }

  h1 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading {
    display: block;
  }

  .business-card {
    min-height: 250px;
  }

  .business-card h3 {
    margin-top: 46px;
  }

  .workflow-grid article {
    min-height: 220px;
    padding: 26px;
  }

  .workflow-grid h3 {
    margin-top: 36px;
  }

  .feature-copy {
    padding: 56px 18px;
  }

  .network-map {
    min-height: 560px;
  }

  .route-map {
    transform: scale(1.25);
    transform-origin: center;
  }

  .map-node {
    min-width: 0;
    width: 148px;
    padding: 11px 12px 11px 34px;
  }

  .node-canada {
    top: 12%;
    left: 5%;
  }

  .node-italy {
    top: 31%;
    left: 11%;
  }

  .node-poland {
    top: 24%;
    left: 38%;
  }

  .node-lebanon {
    top: 43%;
    left: 24%;
  }

  .node-gcc {
    top: 53%;
    left: 42%;
  }

  .node-india {
    top: 65%;
    left: 23%;
  }

  .node-korea {
    top: 37%;
    left: 55%;
  }

  .map-status {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}
