:root {
  --blue: #2948c8;
  --blue2: #17359f;
  --green: #198754;
  --brown: #7b4b2a;
  --red: #c92d3b;
  --white: #fff;
  --off: #f7f8fb;
  --line: #e3e7ee;
  --muted: #626b79;
  --ink: #131722;
  --navy: #0b1220;
  --head: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font: 16px/1.65 var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--head);
  letter-spacing: -0.04em;
}
p {
  color: var(--muted);
}
canvas {
  display: block;
  max-width: 100%;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.skip {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  height: 88px;
  z-index: 1000;
  transition: 0.4s var(--ease);
}
.header.scrolled {
  height: 74px;
  background: #ffffffc9;
  box-shadow: 0 12px 40px #141d3414;
  backdrop-filter: blur(18px);
}
.nav {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
}
.brand > span:last-child {
  display: grid;
  line-height: 1;
}
.brand b {
  font: 700 1rem var(--head);
  letter-spacing: 0.08em;
}
.brand small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.bars {
  display: grid;
  grid-template-columns: repeat(4, 5px);
  gap: 3px;
  align-items: end;
  height: 26px;
}
.bars i {
  display: block;
  border-radius: 2px;
}
.bars i:nth-child(1) {
  height: 26px;
  background: var(--blue);
}
.bars i:nth-child(2) {
  height: 18px;
  background: var(--red);
}
.bars i:nth-child(3) {
  height: 22px;
  background: var(--green);
}
.bars i:nth-child(4) {
  height: 14px;
  background: var(--brown);
}
.navlinks {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}
.navlinks a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.5rem;
  height: 2px;
  background: var(--blue);
  transition: right 0.35s var(--ease);
}
.navlinks a:hover:after,
.navlinks a.active:after {
  right: 0;
}
.menu {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn span {
  transition: 0.3s var(--ease);
}
.btn:hover span {
  transform: translate(2px, -2px);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 32px #2948c833;
}
.btn-blue:hover {
  background: var(--blue2);
}
.btn-light {
  background: #ffffffad;
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-lg {
  min-height: 58px;
  padding-inline: 1.55rem;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding: 136px 0 72px;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 42%, #2948c81a, transparent 26%),
    linear-gradient(#fff, #fbfcff);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(480px, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: calc(100svh - 208px);
}
.hero-copy {
  max-width: 670px;
}
.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, 6.3vw, 7rem);
  line-height: 0.94;
}
.clip {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.clip > span {
  display: block;
}
.lead {
  max-width: 610px;
  font-size: clamp(1.03rem, 1.25vw, 1.23rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.proof {
  display: flex;
  gap: 2rem;
  margin-top: 2.3rem;
}
.proof div {
  display: grid;
}
.proof b {
  font-size: 0.83rem;
}
.proof small {
  color: var(--muted);
  font-size: 0.76rem;
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 79%;
  aspect-ratio: 1;
  border: 1px solid #2948c81f;
  border-radius: 50%;
  pointer-events: none;
}
.o1 {
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-12deg);
}
.o2 {
  width: 62%;
  transform: translate(-50%, -50%) rotateY(72deg) rotateZ(18deg);
}
.tag,
.float {
  position: absolute;
  z-index: 4;
  border: 1px solid #ffffffb8;
  background: #ffffffad;
  box-shadow: 0 18px 60px #16234214;
  backdrop-filter: blur(16px);
}
.tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px #c92d3b1a;
}
.dubai {
  left: 51%;
  top: 47%;
}
.asia {
  right: 7%;
  top: 38%;
}
.europe {
  left: 25%;
  top: 27%;
}
.float {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
}
.float em {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf0ff;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}
.float span {
  display: grid;
}
.float small {
  color: var(--muted);
  font-size: 0.65rem;
}
.float b {
  font-size: 0.78rem;
}
.f1 {
  right: 0;
  top: 19%;
}
.f2 {
  left: 1%;
  bottom: 16%;
}
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.g1 {
  width: 380px;
  height: 380px;
  right: 7%;
  top: 18%;
  background: #2948c814;
}
.g2 {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: 5%;
  background: #1987540f;
}
.scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--blue) 50%, var(--line) 50%);
}
.trust {
  padding: 3rem 0;
  background: var(--off);
  border-block: 1px solid #edf0f5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust article {
  min-height: 190px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #ffffffbd;
  transition: 0.4s var(--ease);
}
.trust article:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 60px #16234214;
}
.trust article > span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
}
.trust h2 {
  font-size: 1.1rem;
}
.trust p {
  font-size: 0.86rem;
  line-height: 1.55;
}
.section {
  padding: 10rem 0;
}
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.warehouse {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(145deg, #0b1220eb, #17359fbf);
  box-shadow: 0 24px 80px #1d2e571a;
}
.gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff0f 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0f 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(18%);
  transform-origin: bottom;
}
.cargo {
  position: absolute;
  width: 32%;
  height: 18%;
  border: 1px solid #ffffff40;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #ffffff40, #ffffff14);
  box-shadow: 0 30px 70px #0004;
  transform: skewY(-8deg);
}
.cargo:after {
  content: "";
  position: absolute;
  inset: 16% 8%;
  background: repeating-linear-gradient(
    90deg,
    #ffffff2e 0 2px,
    transparent 2px 18px
  );
}
.c1 {
  left: 12%;
  bottom: 20%;
}
.c2 {
  right: 13%;
  bottom: 29%;
  background-color: #2948c840;
}
.c3 {
  left: 30%;
  top: 25%;
  width: 40%;
}
.warehouse > span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  background: #0002;
  color: #fff;
  font-size: 0.72rem;
}
.copy h2,
.heading h2,
.nextbox h2,
.contact h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 1.02;
}
.copy > p:not(.eyebrow) {
  font-size: 1.03rem;
}
.textlink,
.service-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 700;
}
.services {
  background: var(--off);
}
.heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-grid article {
  position: relative;
  min-height: 310px;
  padding: 2rem;
  border: 1px solid #edf0f5;
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  transition: 0.4s var(--ease);
}
.service-grid article:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 80px #1d2e571a;
}
.service-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 2.8rem;
  border-radius: 50%;
  background: #eaf0ff;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}
.service-grid h3 {
  font-size: 1.32rem;
}
.service-grid p {
  font-size: 0.9rem;
}
.next {
  background: radial-gradient(circle at 80% 50%, #2948c814, transparent 30%);
}
.nextbox {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: end;
  padding: 4rem;
  border: 1px solid #edf0f5;
  border-radius: 2rem;
  background: var(--off);
}
.contact {
  background:
    radial-gradient(circle at 10% 10%, #2948c859, transparent 30%),
    radial-gradient(circle at 90% 80%, #19875429, transparent 24%), var(--navy);
}
.contact h2 {
  color: #fff;
}
.contact p {
  color: #ffffffad;
}
.light {
  color: #ffffffad;
}
.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #ffffff1f;
  border-radius: 1.5rem;
  background: #ffffff12;
  backdrop-filter: blur(16px);
}
label {
  display: grid;
  gap: 0.45rem;
}
label span {
  color: #ffffffb8;
  font-size: 0.75rem;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  border: 1px solid #ffffff1f;
  border-radius: 0.9rem;
  background: #ffffff14;
  color: #fff;
  outline: 0;
}
input {
  height: 52px;
  padding: 0.9rem;
}
textarea {
  padding: 0.9rem;
  resize: vertical;
}
.wide {
  grid-column: 1/-1;
}
.status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.82rem;
}
footer {
  background: #070c16;
  color: #fff;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}
.foot-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}
.foot-grid h2 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-grid p,
.foot-grid a,
.foot-grid span,
.foot-bottom {
  color: #ffffff9e;
}
.footbrand b {
  color: #fff;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #ffffff14;
  font-size: 0.75rem;
}
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 440px;
  }
  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }
  .header,
  .header.scrolled {
    height: 74px;
  }
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .menu {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffffd9;
  }
  .menu span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: 0.3s;
  }
  .menu span:first-child {
    transform: translateY(-3px);
  }
  .menu span:last-child {
    transform: translateY(3px);
  }
  .menu[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }
  .menu[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }
  .navlinks {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: grid;
    place-content: center;
    gap: 1.3rem;
    background: #fffffff5;
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
  }
  .navlinks.show {
    opacity: 1;
    visibility: visible;
  }
  .navlinks a {
    font: 600 clamp(2rem, 8vw, 3.2rem) var(--head);
    text-align: center;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 144px;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .heading,
  .nextbox {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-visual {
    min-height: 500px;
  }
  .scroll {
    display: none;
  }
  .section {
    padding: 6rem 0;
  }
  .warehouse {
    min-height: 500px;
  }
  .nextbox {
    gap: 1.5rem;
    padding: 2.2rem;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }
  .actions {
    display: grid;
  }
  .actions .btn {
    width: 100%;
  }
  .proof {
    gap: 1rem;
  }
  .hero-visual {
    min-height: 420px;
  }
  .float {
    padding: 0.7rem 0.8rem;
  }
  .f1 {
    top: 13%;
  }
  .f2 {
    bottom: 10%;
  }
  .europe {
    left: 10%;
  }
  .trust-grid,
  .service-grid,
  .foot-grid,
  .contact form {
    grid-template-columns: 1fr;
  }
  .trust article {
    min-height: auto;
  }
  .warehouse {
    min-height: 390px;
  }
  .wide {
    grid-column: auto;
  }
  .foot-grid {
    gap: 2.5rem;
  }
  .foot-bottom {
    display: grid;
    gap: 0.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}
/* Section voice narration */
.section-kicker,
.section-audio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.section-kicker .eyebrow,
.section-audio-row .eyebrow {
  margin-bottom: 0;
}
.section-audio-row {
  margin-bottom: 1.4rem;
}
.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  border: 1px solid #dfe4ed;
  border-radius: 999px;
  background: #ffffffd9;
  color: var(--ink);
  font: 700 0.75rem var(--body);
  cursor: pointer;
  box-shadow: 0 8px 22px #172b5e0d;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.listen-btn:hover {
  transform: translateY(-2px);
  border-color: #2948c859;
  color: var(--blue);
  box-shadow: 0 12px 28px #172b5e17;
}
.listen-btn:focus-visible {
  outline: 3px solid #2948c84d;
  outline-offset: 3px;
}
.listen-btn.is-playing {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.listen-btn.is-paused {
  background: #eaf0ff;
  border-color: #2948c840;
  color: var(--blue);
}
.listen-btn--dark {
  border-color: #ffffff2b;
  background: #ffffff12;
  color: #fff;
  box-shadow: none;
}
.listen-btn--dark:hover {
  border-color: #ffffff80;
  background: #ffffff1f;
  color: #fff;
}
.listen-btn--dark.is-playing {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.listen-icon {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.65rem;
}
.voice-status {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 1200;
  max-width: min(90vw, 520px);
  padding: 0.72rem 1rem;
  border: 1px solid #ffffff2b;
  border-radius: 999px;
  background: #0b1220e8;
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 18px 50px #0003;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 0.3s var(--ease);
}
.voice-status.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 640px) {
  .section-kicker {
    align-items: flex-start;
  }
  .listen-btn {
    flex: 0 0 auto;
  }
  .section-audio-row {
    margin-bottom: 1rem;
  }
}

.voice-help {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.1rem 0.65rem;
  align-items: center;
  max-width: 340px;
  padding: 0.9rem 1rem;
  border: 1px solid #dfe4ed;
  border-radius: 1rem;
  background: #fffffff2;
  box-shadow: 0 18px 55px #172b5e26;
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
}
.voice-help > span:first-child {
  grid-row: 1/3;
  font-size: 1.2rem;
}
.voice-help strong {
  color: var(--ink);
}
.voice-help > span:last-child {
  color: var(--muted);
}
.listen-btn {
  background: #2948c8 !important;
  color: #fff !important;
  border-color: #2948c8 !important;
  box-shadow: 0 10px 28px #2948c833 !important;
}
.listen-btn:hover {
  background: #17359f !important;
  color: #fff !important;
}
.listen-label {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .voice-help {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }
  .listen-btn {
    padding: 0.58rem 0.72rem;
  }
  .listen-label {
    font-size: 0.68rem;
  }
}

/* Premium section narration system — v0.3 */
.listen-btn {
  gap: 0.5rem;
}
.listen-duration {
  opacity: 0.68;
  font-size: 0.72rem;
  font-weight: 600;
}
.listen-btn.is-playing {
  box-shadow: 0 12px 30px rgba(41, 72, 200, 0.22);
}
section.is-narrating {
  position: relative;
}
section.is-narrating::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 1px rgba(41, 72, 200, 0.18),
    0 0 80px rgba(41, 72, 200, 0.06);
  animation: narrationGlow 2.4s ease-in-out infinite;
}
@keyframes narrationGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.audio-dock {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1500;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 46px minmax(220px, 1.35fr) 36px;
  align-items: center;
  gap: 14px;
  width: min(760px, calc(100% - 30px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(11, 18, 32, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translate(-50%, 130%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.55s var(--ease),
    opacity 0.35s ease,
    visibility 0.35s;
}
.audio-dock.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.audio-dock__meta {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}
.audio-dock__meta strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--head);
  font-size: 0.86rem;
}
.audio-dock__eyebrow {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.audio-dock__control,
.audio-dock__stop {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}
.audio-dock__control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(41, 72, 200, 0.24);
}
.audio-dock__stop {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef1f7;
  color: #343b49;
  font-size: 1.3rem;
}
.audio-dock__timeline {
  display: grid;
  gap: 5px;
}
.audio-dock__times {
  display: flex;
  justify-content: space-between;
  color: #6a7280;
  font-size: 0.62rem;
  font-weight: 700;
}
.audio-dock__track {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe4ed;
}
.audio-dock__track > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.25s linear;
}
@media (max-width: 700px) {
  .audio-dock {
    grid-template-columns: 1fr 44px 34px;
    gap: 10px;
    padding: 10px 11px 10px 14px;
  }
  .audio-dock__timeline {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .audio-dock__control {
    grid-column: 2;
    grid-row: 1;
  }
  .audio-dock__stop {
    grid-column: 3;
    grid-row: 1;
  }
  .audio-dock__meta {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  section.is-narrating::after {
    animation: none;
  }
  .audio-dock {
    transition: none;
  }
}

/* Product Universe + Brand Showcase — v0.4 */
.product-universe {
  background: #fff;
}
.product-heading {
  margin-bottom: 3.2rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #e5e9f0;
  border-radius: 2rem;
  background: #f7f8fb;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: #2948c833;
  box-shadow: 0 28px 80px #172b5e18;
}
.product-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, #fff 0, transparent 48%),
    linear-gradient(145deg, #eef2fb, #dde5f6);
}
.product-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.product-card__copy > span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.product-card__copy h3 {
  font-size: 1.65rem;
}
.product-card__copy p {
  font-size: 0.88rem;
}
.product-card__copy a {
  margin-top: 0.8rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}
.product-card--food .product-art {
  background:
    radial-gradient(circle at 45% 34%, #fff9e9, transparent 40%),
    linear-gradient(145deg, #f6efe3, #eadcc7);
}
.product-card--fmcg .product-art {
  background:
    radial-gradient(circle at 50% 30%, #fff, transparent 44%),
    linear-gradient(145deg, #eef3fb, #dfe8f8);
}
.product-card--auto .product-art {
  background:
    radial-gradient(circle at 50% 35%, #2948c840, transparent 42%),
    linear-gradient(145deg, #111827, #1d315a);
}
.product-card--health .product-art {
  background:
    radial-gradient(circle at 50% 34%, #fff, transparent 42%),
    linear-gradient(145deg, #edf8f0, #d9f0df);
}
.product-card--industrial .product-art {
  background:
    radial-gradient(circle at 45% 38%, #fff3, transparent 42%),
    linear-gradient(145deg, #50382a, #8c694e);
}
.product-card--private .product-art {
  background:
    radial-gradient(circle at 50% 30%, #fff, transparent 42%),
    linear-gradient(145deg, #f5f2fa, #e6def2);
}
.pack,
.bottle,
.box,
.oil-can,
.supplement,
.crate,
.blank {
  position: absolute;
  display: block;
  box-shadow: 0 25px 55px #14213d2b;
}
.pack {
  bottom: 18%;
  width: 31%;
  height: 47%;
  border-radius: 0.65rem;
  background: linear-gradient(160deg, #fff, #f0d9b5);
}
.pack:after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 0.35rem;
  background: linear-gradient(#2948c8 0 28%, #d19a46 28% 38%, #ffffff 38%);
}
.pack-a {
  left: 10%;
  transform: rotate(-9deg);
}
.pack-b {
  left: 34%;
  bottom: 13%;
  height: 54%;
  transform: rotate(2deg) scale(1.06);
}
.pack-c {
  right: 8%;
  transform: rotate(10deg);
}
.bottle {
  bottom: 15%;
  width: 22%;
  height: 50%;
  border-radius: 1.4rem 1.4rem 0.8rem 0.8rem;
  background: linear-gradient(90deg, #f8fbff, #cdd8eb);
}
.bottle:before {
  content: "";
  position: absolute;
  left: 28%;
  top: -10%;
  width: 44%;
  height: 13%;
  border-radius: 0.3rem;
  background: #2948c8;
}
.bottle:after {
  content: "";
  position: absolute;
  inset: 30% 12% 18%;
  border-radius: 0.5rem;
  background: #fff;
}
.bottle-a {
  left: 20%;
}
.bottle-b {
  left: 46%;
  height: 42%;
  filter: hue-rotate(75deg);
}
.box {
  right: 8%;
  bottom: 15%;
  width: 26%;
  height: 32%;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, #fff, #dae3f2);
}
.box:after {
  content: "SKY";
  position: absolute;
  left: 20%;
  top: 40%;
  color: #2948c8;
  font: bold 1rem var(--head);
}
.oil-can {
  bottom: 10%;
  width: 34%;
  height: 62%;
  border-radius: 1.4rem 1.4rem 0.8rem 0.8rem;
  background: linear-gradient(145deg, #263246, #0d1420);
}
.oil-can:before {
  content: "";
  position: absolute;
  right: 12%;
  top: 12%;
  width: 30%;
  height: 22%;
  border: 8px solid #354663;
  border-left-color: transparent;
  border-radius: 50%;
}
.oil-can:after {
  content: "SKYPOWER";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  padding: 1rem 0.2rem;
  background: linear-gradient(90deg, #2948c8, #17359f);
  color: #fff;
  font: bold 0.72rem var(--head);
  text-align: center;
}
.oil-a {
  left: 18%;
  transform: rotate(-7deg);
}
.oil-b {
  right: 16%;
  height: 52%;
  transform: rotate(8deg);
  opacity: 0.88;
}
.supplement {
  bottom: 13%;
  width: 30%;
  height: 55%;
  border-radius: 1rem 1rem 1.35rem 1.35rem;
  background: linear-gradient(90deg, #fff, #dcece0);
}
.supplement:before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -12%;
  height: 15%;
  border-radius: 0.5rem;
  background: #198754;
}
.supplement:after {
  content: "NEETRO";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 20%;
  padding: 1rem 0.2rem;
  background: #fff;
  color: #198754;
  font: bold 0.85rem var(--head);
  text-align: center;
}
.sup-a {
  left: 20%;
}
.sup-b {
  right: 18%;
  height: 44%;
  transform: rotate(8deg);
}
.leaf {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 28%;
  height: 16%;
  border-radius: 100% 0 100% 0;
  background: #19875455;
  transform: rotate(-25deg);
}
.crate {
  bottom: 13%;
  width: 38%;
  height: 32%;
  border-radius: 0.4rem;
  background: linear-gradient(145deg, #8a684e, #5e4432);
}
.crate:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid #ffffff55;
}
.crate-a {
  left: 12%;
}
.crate-b {
  right: 10%;
  bottom: 28%;
  transform: scale(0.85);
}
.gear {
  position: absolute;
  left: 37%;
  top: 14%;
  width: 92px;
  height: 92px;
  border: 18px dotted #fff6;
  border-radius: 50%;
}
.blank {
  bottom: 15%;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #fff, #eee8f8);
}
.blank-a {
  left: 10%;
  width: 26%;
  height: 47%;
}
.blank-b {
  left: 38%;
  width: 24%;
  height: 58%;
}
.blank-c {
  right: 8%;
  width: 26%;
  height: 38%;
}
.blank:after {
  content: "YOUR BRAND";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42%;
  color: #7b4b2a;
  font: bold 0.62rem var(--head);
  text-align: center;
}
.brand-showcase {
  overflow: hidden;
}
.brand-panel {
  position: relative;
  padding: 9rem 0;
}
.brand-panel__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.brand-panel__grid--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.brand-panel--skypower {
  background:
    radial-gradient(circle at 72% 45%, #2948c84a, transparent 29%),
    linear-gradient(145deg, #070c16, #101a2d 55%, #0d1730);
  color: #fff;
}
.brand-panel--skypower p {
  color: #ffffffa8;
}
.brand-panel--neetro {
  background:
    radial-gradient(circle at 24% 45%, #19875420, transparent 30%),
    linear-gradient(145deg, #f8fff9, #edf7ef);
}
.brand-copy-block h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
}
.brand-copy-block > p:not(.eyebrow):not(.brand-wordmark) {
  max-width: 590px;
  font-size: 1.05rem;
}
.brand-copy-block--darktext h2 {
  color: var(--ink);
}
.brand-wordmark {
  margin-bottom: 1rem !important;
  color: #fff !important;
  font: 700 clamp(1.5rem, 2vw, 2.2rem) var(--head);
  letter-spacing: 0.18em;
}
.brand-wordmark--green {
  color: var(--green) !important;
}
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}
.brand-pills span {
  padding: 0.58rem 0.8rem;
  border: 1px solid #ffffff2c;
  border-radius: 999px;
  background: #ffffff0e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.brand-pills--light span {
  border-color: #1987542d;
  background: #fff;
  color: #335542;
}
.brand-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}
.oil-bottle {
  position: relative;
  z-index: 4;
  width: 250px;
  height: 430px;
  border-radius: 42px 54px 28px 28px;
  background: linear-gradient(135deg, #29364c, #0c121d 58%, #27344d);
  box-shadow: 0 45px 100px #0008;
  transform: rotate(4deg);
}
.oil-bottle__cap {
  position: absolute;
  left: 24px;
  top: -28px;
  width: 88px;
  height: 54px;
  border-radius: 12px 12px 5px 5px;
  background: repeating-linear-gradient(90deg, #182236 0 5px, #2d3b52 5px 9px);
}
.oil-bottle__handle {
  position: absolute;
  right: 20px;
  top: 44px;
  width: 86px;
  height: 110px;
  border: 22px solid #202d43;
  border-left-color: transparent;
  border-radius: 45%;
}
.oil-bottle__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 38px;
  display: grid;
  padding: 2rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #2948c8, #112d9d);
  color: #fff;
}
.oil-bottle__label b {
  font: 700 1.45rem var(--head);
  letter-spacing: 0.07em;
}
.oil-bottle__label small {
  margin-top: 0.3rem;
  font-size: 1rem;
  font-weight: 800;
}
.oil-bottle__label em {
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-style: normal;
  opacity: 0.75;
}
.brand-ring {
  position: absolute;
  border: 1px solid #ffffff24;
  border-radius: 50%;
}
.ring-one {
  width: 490px;
  height: 490px;
  transform: rotateX(68deg);
}
.ring-two {
  width: 390px;
  height: 390px;
  border-color: #2948c866;
  transform: rotateY(68deg);
}
.vitamin-bottle {
  position: relative;
  z-index: 4;
  width: 230px;
  height: 365px;
  border-radius: 35px 35px 52px 52px;
  background: linear-gradient(100deg, #fff, #e6efe8);
  box-shadow: 0 40px 90px #174a2b2d;
  transform: rotate(-4deg);
}
.vitamin-bottle__cap {
  position: absolute;
  left: 20px;
  right: 20px;
  top: -44px;
  height: 58px;
  border-radius: 18px 18px 8px 8px;
  background: repeating-linear-gradient(90deg, #137447 0 6px, #24945f 6px 11px);
}
.vitamin-bottle__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 34px;
  display: grid;
  padding: 2.2rem 1.2rem;
  border-radius: 20px;
  background: #fff;
  color: #254735;
}
.vitamin-bottle__label b {
  color: #198754;
  font: 700 1.7rem var(--head);
  letter-spacing: 0.08em;
}
.vitamin-bottle__label small {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.vitamin-bottle__label em {
  margin-top: 1.4rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}
.wellness-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.orb-one {
  width: 260px;
  height: 260px;
  left: 12%;
  top: 16%;
  background: #1987541f;
}
.orb-two {
  width: 180px;
  height: 180px;
  right: 8%;
  bottom: 14%;
  background: #2948c817;
}
.wellness-leaf {
  position: absolute;
  right: 14%;
  top: 20%;
  width: 160px;
  height: 76px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, #4aaa73, #167a49);
  transform: rotate(-28deg);
  box-shadow: 0 25px 50px #1987542e;
}
@media (max-width: 1000px) {
  .product-card {
    grid-template-columns: 1fr;
    min-height: 620px;
  }
  .product-art {
    min-height: 340px;
  }
  .brand-panel__grid,
  .brand-panel__grid--reverse {
    grid-template-columns: 1fr;
  }
  .brand-panel--neetro .brand-copy-block {
    grid-row: 1;
  }
  .brand-product {
    min-height: 520px;
  }
  .brand-panel {
    padding: 7rem 0;
  }
}
@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 560px;
  }
  .product-art {
    min-height: 300px;
  }
  .brand-panel__grid {
    gap: 2rem;
  }
  .brand-copy-block h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
  .brand-product {
    min-height: 450px;
  }
  .oil-bottle {
    width: 190px;
    height: 330px;
  }
  .vitamin-bottle {
    width: 180px;
    height: 290px;
  }
  .ring-one {
    width: 360px;
    height: 360px;
  }
  .ring-two {
    width: 290px;
    height: 290px;
  }
}

/* Experience Layer — v0.5 */
.supply-chain {
  background: linear-gradient(180deg, #fff, #f7f9fd);
}
.journey-heading {
  margin-bottom: 3rem;
}
.journey-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 6rem;
}
.journey-route {
  position: absolute;
  left: 2.15rem;
  top: 2.4rem;
  bottom: 2.4rem;
  width: 2px;
  background: #dfe5f2;
}
.journey-route span {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(var(--blue), var(--green));
  box-shadow: 0 0 18px #2948c855;
  transition: height 0.65s var(--ease);
}
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 170px;
  padding: 2rem;
  border: 1px solid #e4e8f0;
  border-radius: 1.5rem;
  background: #ffffffcc;
  opacity: 0.58;
  transform: scale(0.985);
  transition: 0.45s var(--ease);
}
.journey-step.is-active {
  opacity: 1;
  transform: none;
  border-color: #2948c83b;
  box-shadow: 0 24px 70px #1d2e5712;
}
.journey-step:before {
  content: "";
  position: absolute;
  left: -4.2rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border: 5px solid #eef2fb;
  border-radius: 50%;
  background: #aab5cc;
  transform: translateY(-50%);
  transition: 0.35s var(--ease);
}
.journey-step.is-active:before {
  background: var(--blue);
  box-shadow: 0 0 0 8px #2948c817;
}
.journey-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef2fb;
  color: var(--blue);
  font: 700 0.9rem var(--head);
}
.journey-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.6rem;
}
.journey-step p:last-child {
  margin: 0;
  max-width: 780px;
}
.journey-step .eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
}
.network-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 40%, #2948c84f, transparent 30%),
    linear-gradient(145deg, #070c16, #101b31 58%, #0a1733);
  color: #fff;
}
.network-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 4rem;
  align-items: center;
}
.network-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.96;
}
.network-copy > p {
  color: #ffffffa8;
}
.network-detail {
  margin-top: 2.5rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid #ffffff1f;
  border-radius: 1.2rem;
  background: #ffffff0d;
  backdrop-filter: blur(12px);
}
.network-detail span {
  display: block;
  color: #ffffff75;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.network-detail strong {
  display: block;
  margin: 0.3rem 0;
  color: #fff;
  font: 600 1.25rem var(--head);
}
.network-detail p {
  margin: 0;
  color: #ffffff9f;
  font-size: 0.85rem;
}
.network-map {
  position: relative;
  min-height: 650px;
  border: 1px solid #ffffff1b;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 48%, #2948c822, transparent 45%), #ffffff08;
  box-shadow: inset 0 0 80px #2948c81f;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff0a 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 44px 44px;
}
.network-map svg {
  position: absolute;
  inset: 8% 5%;
  width: 90%;
  height: 84%;
}
.world-shape {
  fill: #ffffff0d;
  stroke: #ffffff2d;
  stroke-width: 2;
}
.route {
  fill: none;
  stroke: url(#routeGlow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 11;
  animation: routeFlow 3.5s linear infinite;
}
.route-b {
  animation-delay: -0.7s;
}
.route-c {
  animation-delay: -1.4s;
}
.route-d {
  animation-delay: -2.1s;
}
.route-e {
  animation-delay: -2.8s;
}
@keyframes routeFlow {
  to {
    stroke-dashoffset: -42;
  }
}
.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.map-node i {
  position: relative;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow:
    0 0 0 8px #2948c826,
    0 0 24px #2948c8;
}
.map-node span {
  padding: 0.32rem 0.52rem;
  border: 1px solid #ffffff22;
  border-radius: 999px;
  background: #081226c9;
  font-size: 0.66rem;
  font-weight: 700;
}
.map-node.is-selected i {
  background: var(--green);
  box-shadow:
    0 0 0 9px #19875424,
    0 0 28px #38d58b;
}
.map-node:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.industries-section {
  background: #fff;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid #e7eaf0;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #f8f9fc, #edf1f7);
  transition: 0.4s var(--ease);
}
.industry-card:before,
.industry-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: 0.6s var(--ease);
}
.industry-card:before {
  right: -55px;
  top: -55px;
  width: 180px;
  height: 180px;
  background: #2948c817;
}
.industry-card:after {
  left: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  background: #19875412;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px #172b5e15;
}
.industry-card:hover:before {
  transform: scale(1.35);
}
.industry-card > span {
  position: relative;
  z-index: 2;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
}
.industry-card > div {
  position: relative;
  z-index: 2;
}
.industry-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.4rem;
}
.industry-card p {
  margin: 0;
  font-size: 0.84rem;
}
.industry-food {
  background: linear-gradient(145deg, #fffaf0, #f3e5ca);
}
.industry-auto {
  background: linear-gradient(145deg, #111827, #253551);
  color: #fff;
}
.industry-auto p {
  color: #ffffffa0;
}
.industry-health {
  background: linear-gradient(145deg, #f4fff7, #dff2e5);
}
.industry-industrial {
  background: linear-gradient(145deg, #80604a, #3f2d22);
  color: #fff;
}
.industry-industrial p {
  color: #ffffffa8;
}
.industry-hospitality {
  background: linear-gradient(145deg, #fbf5ff, #e9def2);
}
.industry-government {
  background: linear-gradient(145deg, #f2f5ff, #dee5f7);
}
.industry-wholesale {
  background: linear-gradient(145deg, #fff4ef, #f0ded5);
}
.why-section {
  background: var(--off);
}
.why-panels {
  display: grid;
  gap: 1.25rem;
}
.why-panels article {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #e3e7ee;
  border-radius: 2rem;
  background: #fff;
}
.why-panels article:nth-child(even) {
  grid-template-columns: 1.2fr 0.8fr;
}
.why-panels article:nth-child(even) .why-visual {
  grid-column: 2;
  grid-row: 1;
}
.why-panels article > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.why-panels article > div:last-child > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
}
.why-panels h3 {
  margin: 0.7rem 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}
.why-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c1527, #1f3b7d);
}
.why-visual i {
  position: absolute;
  display: block;
}
.why-visual--network i {
  width: 28px;
  height: 28px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 12px #ffffff18;
}
.why-visual--network i:nth-child(1) {
  left: 25%;
  top: 28%;
}
.why-visual--network i:nth-child(2) {
  right: 22%;
  top: 45%;
}
.why-visual--network i:nth-child(3) {
  left: 42%;
  bottom: 20%;
}
.why-visual--network:after {
  content: "";
  position: absolute;
  inset: 20%;
  background:
    linear-gradient(28deg, transparent 49.5%, #ffffff54 50%, transparent 50.5%),
    linear-gradient(-37deg, transparent 49.5%, #ffffff54 50%, transparent 50.5%);
}
.why-visual--quality {
  background: linear-gradient(145deg, #f9fff9, #d9f0df);
}
.why-visual--quality i {
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border: 28px solid #198754;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.why-visual--quality i:nth-child(2) {
  width: 105px;
  height: 105px;
  border-width: 18px;
  opacity: 0.55;
}
.why-visual--quality i:nth-child(3) {
  width: 30px;
  height: 30px;
  border: 0;
  background: #2948c8;
  box-shadow: 0 0 0 14px #2948c820;
}
.why-visual--logistics {
  background: linear-gradient(145deg, #5c402f, #9a7659);
}
.why-visual--logistics i {
  bottom: 24%;
  width: 26%;
  height: 28%;
  border: 2px solid #ffffff55;
  border-radius: 0.5rem;
  background: #ffffff19;
  box-shadow: 0 22px 50px #0003;
}
.why-visual--logistics i:after {
  content: "";
  position: absolute;
  inset: 16%;
  background: repeating-linear-gradient(
    90deg,
    #ffffff30 0 2px,
    transparent 2px 16px
  );
}
.why-visual--logistics i:nth-child(1) {
  left: 12%;
}
.why-visual--logistics i:nth-child(2) {
  left: 37%;
  bottom: 36%;
}
.why-visual--logistics i:nth-child(3) {
  right: 12%;
}
@media (max-width: 1050px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
  .network-map {
    min-height: 570px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .journey-shell {
    padding-left: 3.6rem;
  }
  .journey-route {
    left: 1rem;
  }
  .journey-step {
    grid-template-columns: 1fr;
  }
  .journey-step:before {
    left: -3.25rem;
  }
  .journey-icon {
    width: 54px;
    height: 54px;
  }
  .why-panels article,
  .why-panels article:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .why-panels article:nth-child(even) .why-visual {
    grid-column: auto;
    grid-row: auto;
  }
  .why-visual {
    min-height: 300px;
  }
}
@media (max-width: 600px) {
  .journey-shell {
    padding-left: 2.7rem;
  }
  .journey-step {
    padding: 1.4rem;
  }
  .network-section {
    padding: 7rem 0;
  }
  .network-map {
    min-height: 440px;
  }
  .map-node span {
    display: none;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    min-height: 260px;
  }
  .why-panels article > div:last-child {
    padding: 2rem;
  }
  .why-visual {
    min-height: 250px;
  }
}

/* v0.6 — coordinated sample visual assets */
.product-grid--visual .product-card {
  display: block;
  min-height: 470px;
  background: #0b1220;
  color: #fff;
}
.product-card--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s var(--ease);
}
.product-card--photo .product-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 12, 22, 0.04) 8%,
    rgba(7, 12, 22, 0.28) 48%,
    rgba(7, 12, 22, 0.94) 100%
  );
}
.product-card--photo .product-card__copy {
  min-height: 470px;
  padding: 2rem;
  justify-content: flex-end;
}
.product-card--photo .product-card__copy > span {
  margin-bottom: auto;
  color: #fff;
  background: #ffffff22;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  width: max-content;
  padding: 0.45rem 0.62rem;
  backdrop-filter: blur(12px);
}
.product-card--photo h3 {
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}
.product-card--photo p {
  color: #ffffffc4;
  max-width: 520px;
}
.product-card--photo a {
  color: #fff;
}
.product-card--photo:hover > img {
  transform: scale(1.065);
  filter: saturate(1.06) contrast(1.03);
}
.product-card--photo:hover {
  border-color: #ffffff22;
  box-shadow: 0 32px 90px #0b122042;
}

.brand-panel--skypower:before,
.brand-panel--neetro:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: screen;
}
.brand-panel--skypower:before {
  background-image:
    linear-gradient(90deg, #070c16 0%, transparent 75%),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=80");
  opacity: 0.16;
}
.brand-panel--neetro:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(248, 255, 249, 0.92),
      rgba(248, 255, 249, 0.38)
    ),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=80");
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.brand-panel__grid {
  position: relative;
  z-index: 2;
}

.industry-card {
  isolation: isolate;
  color: #fff;
  background: #101827;
}
.industry-card:before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 8, 16, 0.05), rgba(4, 8, 16, 0.82)),
    var(--industry-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  z-index: -2;
}
.industry-card:after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(41, 72, 200, 0.18), transparent 45%);
  z-index: -1;
}
.industry-card:hover:before {
  transform: scale(1.08);
}
.industry-card > span {
  color: #fff;
  background: #ffffff1c;
  border: 1px solid #ffffff26;
  border-radius: 999px;
  width: max-content;
  padding: 0.4rem 0.58rem;
  backdrop-filter: blur(10px);
}
.industry-card h3 {
  color: #fff;
}
.industry-card p,
.industry-auto p,
.industry-industrial p {
  color: #ffffffc4;
}

.asset-note {
  padding: 1rem 0;
  background: #f5f7fb;
  border-top: 1px solid #e5e9f0;
}
.asset-note p {
  margin: 0;
  color: #596274;
  font-size: 0.78rem;
  text-align: center;
}
.asset-note strong {
  color: #1d2636;
}

@media (max-width: 1000px) {
  .product-grid--visual .product-card,
  .product-card--photo .product-card__copy {
    min-height: 520px;
  }
}
@media (max-width: 700px) {
  .product-grid--visual .product-card,
  .product-card--photo .product-card__copy {
    min-height: 500px;
  }
  .product-card--photo .product-card__copy {
    padding: 1.5rem;
  }
  .asset-note p {
    text-align: left;
  }
}

/* v0.7 — advanced 3D refinement */
.scene-badge {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  padding: 0.52rem 0.8rem;
  border: 1px solid #ffffffb8;
  border-radius: 999px;
  background: #ffffff9e;
  color: #25304a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 44px #182b5b18;
  backdrop-filter: blur(14px);
  pointer-events: none;
}
.hero-visual:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 62%;
  height: 9%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, #2948c82b, transparent 66%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-visual .tag,
.hero-visual .float {
  will-change: transform;
}

.brand-product {
  perspective: 1100px;
  transform-style: preserve-3d;
  isolation: isolate;
}
.brand-product:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 58%;
  height: 12%;
  transform: translateX(-50%) rotateX(70deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 67%);
  filter: blur(10px);
}
.oil-bottle,
.vitamin-bottle {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.18s ease-out,
    filter 0.4s ease;
}
.oil-bottle {
  filter: drop-shadow(0 38px 45px rgba(0, 0, 0, 0.38));
}
.vitamin-bottle {
  filter: drop-shadow(0 35px 42px rgba(40, 90, 55, 0.22));
}
.oil-bottle:before,
.vitamin-bottle:before {
  content: "";
  position: absolute;
  inset: 3% 8% 8%;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.25),
    transparent 24%,
    transparent 68%,
    rgba(255, 255, 255, 0.08)
  );
  transform: translateZ(18px);
  pointer-events: none;
}
.oil-bottle__label,
.vitamin-bottle__label {
  transform: translateZ(28px);
}
.brand-product:hover .oil-bottle,
.brand-product:hover .vitamin-bottle {
  filter: drop-shadow(0 45px 58px rgba(0, 0, 0, 0.34));
}
.brand-ring,
.wellness-orb,
.wellness-leaf {
  will-change: transform;
}

.network-map {
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(52, 91, 214, 0.22),
      transparent 31%
    ),
    linear-gradient(145deg, #101a31, #07101f 74%);
}
#network-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.38));
}
.network-map .map-grid {
  z-index: 0;
  opacity: 0.38;
}
.network-map > svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.network-map .map-node {
  z-index: 5;
}
.scene-badge--network {
  left: 1rem;
  top: 1rem;
  transform: none;
  background: #0e1b33b8;
  color: #dfe8ff;
  border-color: #ffffff28;
}
.network-map:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 22, 0.42),
      transparent 25%,
      transparent 78%,
      rgba(5, 11, 22, 0.28)
    ),
    linear-gradient(180deg, transparent 70%, rgba(3, 8, 17, 0.34));
}
.map-node i {
  box-shadow:
    0 0 0 7px rgba(79, 114, 255, 0.13),
    0 0 26px rgba(79, 114, 255, 0.75);
}
.map-node.is-selected i {
  box-shadow:
    0 0 0 9px rgba(47, 189, 120, 0.14),
    0 0 34px rgba(47, 189, 120, 0.9);
}

@media (max-width: 900px) {
  .scene-badge {
    top: 2%;
    font-size: 0.58rem;
  }
  .network-map {
    min-height: 530px;
  }
}
@media (max-width: 600px) {
  .scene-badge {
    display: none;
  }
  .network-map {
    min-height: 460px;
  }
  .network-map > svg {
    opacity: 0.1;
  }
}

/* =========================================================
   PRODUCTION HERO 1.0 — intentionally distinct from v0.7
   ========================================================= */
.hero-production {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 42px;
  overflow: hidden;
  background: #f7f9fd;
  color: #111827;
  isolation: isolate;
}
.hero-production__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 73% 39%,
      rgba(41, 72, 200, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 91% 16%,
      rgba(25, 135, 84, 0.09),
      transparent 19%
    ),
    linear-gradient(112deg, #fff 0 51%, #eef3ff 51% 100%);
  z-index: -3;
}
.hero-production__noise {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  z-index: -2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}
.hero-production__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(30px, 4vw, 76px);
  align-items: center;
  min-height: calc(100svh - 180px);
}
.hero-production__copy {
  position: relative;
  z-index: 5;
  padding: 28px 0 44px;
}
.hero-production__kicker {
  margin-bottom: 22px;
}
.hero-production__pretitle {
  margin: 0 0 17px;
  color: #2948c8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-production__title {
  font-size: clamp(4.2rem, 6.45vw, 7.45rem);
  line-height: 0.88;
  letter-spacing: -0.072em;
  margin: 0 0 30px;
  max-width: 790px;
}
.hero-production__title .clip {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}
.hero-production__title .clip:nth-child(2) > span {
  color: #2948c8;
}
.hero-production .lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.72;
  color: #596171;
  margin-bottom: 30px;
}
.hero-production .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-production__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  max-width: 680px;
}
.hero-production__facts article {
  display: flex;
  gap: 12px;
  padding: 18px 16px 0 0;
  border-right: 1px solid rgba(17, 24, 39, 0.1);
}
.hero-production__facts article:last-child {
  border-right: 0;
  padding-left: 16px;
}
.hero-production__facts article:nth-child(2) {
  padding-left: 16px;
}
.hero-production__facts article > span {
  color: #c92d3b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 4px;
}
.hero-production__facts div {
  display: grid;
}
.hero-production__facts b {
  font-size: 0.84rem;
}
.hero-production__facts small {
  font-size: 0.68rem;
  color: #707887;
  margin-top: 2px;
}
.hero-production__stage {
  position: relative;
  height: min(710px, 72svh);
  min-height: 590px;
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(
    circle at 52% 45%,
    #294b9d 0,
    #142a5a 31%,
    #09152f 72%,
    #050b19 100%
  );
  box-shadow:
    0 42px 100px rgba(14, 31, 75, 0.27),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  transform-style: preserve-3d;
}
.hero-production__stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  z-index: 1;
  pointer-events: none;
}
.hero-production__stage:after {
  content: "";
  position: absolute;
  inset: auto 6% 4%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(60, 104, 255, 0.22),
    transparent 65%
  );
  filter: blur(18px);
  z-index: 1;
}
#hero-logistics-v1 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-production__stage-label {
  position: absolute;
  top: 25px;
  left: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.hero-production__stage-label i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #37db8b;
  box-shadow:
    0 0 0 6px rgba(55, 219, 139, 0.12),
    0 0 18px #37db8b;
}
.hero-production__coordinates {
  position: absolute;
  right: 27px;
  top: 25px;
  z-index: 6;
  color: rgba(255, 255, 255, 0.42);
  font-family: monospace;
  font-size: 0.63rem;
  line-height: 1.55;
  text-align: right;
}
.hero-production__halo {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 1;
  border: 1px solid rgba(105, 142, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.halo-a {
  width: 79%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(69deg) rotateZ(-15deg);
}
.halo-b {
  width: 61%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateY(73deg) rotateZ(20deg);
}
.hero-production__card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(6, 15, 35, 0.64);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  color: #fff;
}
.hero-production__card div {
  display: grid;
}
.hero-production__card small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.53);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-production__card strong {
  font-size: 0.76rem;
  margin-top: 2px;
}
.card-origin {
  left: 23px;
  bottom: 88px;
}
.card-route {
  right: 24px;
  top: 105px;
}
.hero-production__card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c92d3b;
  box-shadow:
    0 0 0 7px rgba(201, 45, 59, 0.13),
    0 0 22px rgba(201, 45, 59, 0.8);
}
.hero-production__route-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: rgba(79, 114, 255, 0.18);
  color: #8fa8ff;
}
.hero-production__ticker {
  position: absolute;
  z-index: 7;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 10, 23, 0.58);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.hero-production__ticker i {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: #4f72ff;
}
.hero-production__bottomline {
  width: min(calc(100% - 48px), 1280px);
  margin: 15px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7c8492;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-production__bottomline a {
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-production__bottomline i {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: #aab1be;
  position: relative;
}
.hero-production__bottomline i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #7c8492;
  border-bottom: 1px solid #7c8492;
  transform: rotate(-45deg);
}
.hero-production__stage.is-ready {
  animation: heroStageReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroStageReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.965);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1050px) {
  .hero-production__grid {
    grid-template-columns: 1fr 460px;
  }
  .hero-production__title {
    font-size: clamp(4rem, 7vw, 5.4rem);
  }
  .hero-production__stage {
    min-height: 540px;
    height: 620px;
  }
}
@media (max-width: 900px) {
  .hero-production {
    padding-top: 105px;
  }
  .hero-production__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-production__copy {
    padding-bottom: 10px;
  }
  .hero-production__stage {
    height: 560px;
    min-height: 520px;
  }
  .hero-production__facts {
    margin-top: 35px;
  }
  .hero-production__bottomline {
    display: none;
  }
}
@media (max-width: 620px) {
  .hero-production {
    padding-bottom: 34px;
  }
  .hero-production__title {
    font-size: clamp(3.75rem, 16vw, 5.05rem);
  }
  .hero-production__stage {
    height: 490px;
    min-height: 470px;
    border-radius: 25px;
  }
  .hero-production__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-production__facts article,
  .hero-production__facts article:nth-child(2),
  .hero-production__facts article:last-child {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }
  .card-route {
    right: 12px;
    top: 72px;
  }
  .card-origin {
    left: 12px;
    bottom: 66px;
  }
  .hero-production__coordinates {
    display: none;
  }
  .hero-production__ticker {
    justify-content: flex-start;
    padding-left: 18px;
    overflow: hidden;
  }
  .hero-production__stage-label {
    left: 18px;
    top: 20px;
  }
}

/* Hero Globe Final — production polish */
.hero-production__stage {
  background: radial-gradient(
    circle at 53% 44%,
    #294b9f 0,
    #122657 32%,
    #07122a 70%,
    #030812 100%
  );
}
.hero-production__stage.is-textured:after {
  background: radial-gradient(
    ellipse,
    rgba(72, 118, 255, 0.28),
    transparent 66%
  );
}
.hero-production__stage:before {
  opacity: 0.72;
}
.hero-production__stage-label span:after {
  content: " / CARGO FLOW";
  color: rgba(255, 255, 255, 0.31);
}
.card-origin {
  left: 23px;
  bottom: 88px;
}
.card-route {
  right: 24px;
  top: 105px;
}
.card-procurement {
  right: 24px;
  bottom: 94px;
}
.hero-production__card {
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.hero-production__card:hover {
  border-color: rgba(126, 161, 255, 0.42);
  background: rgba(8, 20, 48, 0.82);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}
.hero-production__route-icon {
  font-size: 0.9rem;
}
.hero-production__stage.is-texture-fallback
  .hero-production__stage-label
  span:after {
  content: " / FALLBACK MODE";
}
@media (max-width: 620px) {
  .card-procurement {
    display: none;
  }
  .hero-production__stage-label span:after {
    display: none;
  }
}

/* Sky Source Hero Premium Sprint H5.1 */
.hero-production__stage {
  isolation: isolate;
  background:
    radial-gradient(
      circle at 68% 18%,
      rgba(93, 65, 160, 0.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 22% 78%,
      rgba(23, 92, 126, 0.24),
      transparent 37%
    ),
    radial-gradient(
      circle at 52% 44%,
      #294b9f 0,
      #122657 31%,
      #07122a 69%,
      #02060e 100%
    );
  box-shadow:
    0 46px 115px rgba(8, 20, 55, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -90px 140px rgba(0, 0, 0, 0.24);
}

.hero-production__stage::before {
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 35%,
      rgba(105, 145, 255, 0.18),
      transparent 58%
    );
  animation: heroGridDrift 18s linear infinite;
}

.hero-production__stage::after {
  inset: 3%;
  height: auto;
  border-radius: 30px;
  background:
    radial-gradient(
      ellipse at 50% 68%,
      rgba(75, 116, 255, 0.2),
      transparent 48%
    ),
    linear-gradient(
      112deg,
      transparent 18%,
      rgba(255, 255, 255, 0.045) 42%,
      transparent 61%
    );
  filter: blur(20px);
  opacity: 0.85;
  animation: heroNebulaBreath 8s ease-in-out infinite alternate;
}

.hero-production__noise {
  opacity: 0.18;
}

.hero-production__halo {
  opacity: 0.68;
  box-shadow:
    0 0 35px rgba(83, 120, 255, 0.08),
    inset 0 0 25px rgba(83, 120, 255, 0.06);
}

.hero-production__stage .halo-a {
  border-color: rgba(114, 151, 255, 0.24);
}

.hero-production__stage .halo-b {
  border-color: rgba(94, 223, 173, 0.14);
}

.hero-production__card {
  --card-x: 0px;
  --card-y: 0px;
  --card-rx: 0deg;
  --card-ry: 0deg;
  --light-x: 50%;
  --light-y: 50%;
  overflow: hidden;
  transform: perspective(800px) translate3d(var(--card-x), var(--card-y), 0)
    rotateX(var(--card-rx)) rotateY(var(--card-ry));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  background: linear-gradient(
    145deg,
    rgba(12, 28, 60, 0.78),
    rgba(4, 12, 29, 0.61)
  );
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-production__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    140px circle at var(--light-x) var(--light-y),
    rgba(255, 255, 255, 0.16),
    transparent 62%
  );
  opacity: 0.72;
}

.hero-production__card > * {
  position: relative;
  z-index: 1;
}

.hero-production__card:hover {
  border-color: rgba(137, 167, 255, 0.44);
  background: linear-gradient(
    145deg,
    rgba(15, 34, 72, 0.88),
    rgba(5, 15, 35, 0.74)
  );
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.38),
    0 0 35px rgba(70, 108, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.hero-production__ticker {
  backdrop-filter: blur(16px);
  background: linear-gradient(
    90deg,
    rgba(3, 9, 22, 0.66),
    rgba(11, 25, 55, 0.5),
    rgba(3, 9, 22, 0.66)
  );
}

@keyframes heroGridDrift {
  from {
    background-position:
      0 0,
      0 0,
      center;
  }
  to {
    background-position:
      54px 54px,
      54px 54px,
      center;
  }
}

@keyframes heroNebulaBreath {
  from {
    opacity: 0.6;
    transform: scale(0.98) translate3d(-1%, 1%, 0);
  }
  to {
    opacity: 0.92;
    transform: scale(1.025) translate3d(1%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-production__stage::before,
  .hero-production__stage::after {
    animation: none;
  }

  .hero-production__card {
    transform: none;
  }
}
/* ===== Hero Title Visibility Fix ===== */

.hero-production__title {
  max-width: none;
  font-size: clamp(4rem, 5.7vw, 6.7rem);
  line-height: 0.9;
}

.hero-production__title .clip {
  overflow: hidden;
}

.hero-production__title .clip > span {
  display: block;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.hero-production__title .clip:nth-child(2) > span {
  font-size: 0.86em;
}

/* ===== Definitive non-clipped hero title ===== */
.hero-production__title {
  position: relative;
  z-index: 10;
  display: grid !important;
  gap: 0;
  width: max-content;
  max-width: none !important;
  margin: 0 0 30px;
  color: #111827 !important;
  font-size: clamp(4rem, 5.7vw, 6.7rem);
  line-height: 0.9;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-production__title > span {
  display: block !important;
  width: max-content;
  white-space: nowrap;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-production__title > span:nth-child(2) {
  color: #2948c8 !important;
  font-size: 0.86em;
}

@media (max-width: 620px) {
  .hero-production__title {
    width: 100%;
    font-size: clamp(3.25rem, 15vw, 4.9rem);
  }

  .hero-production__title > span {
    white-space: normal;
  }
}


/* Cleanup Sprint 6: accessibility and graceful fallback */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #081a3a;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.network-map--fallback #network-globe {
  display: none;
}

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


/* Sprint 7: skip off-screen rendering while retaining stable scroll geometry. */
@supports (content-visibility: auto) {
  .trust,
  #about,
  #services,
  #products,
  #brands,
  #journey,
  #network,
  #industries,
  #contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

/* =========================================================
   SPRINT 8 — PREMIUM HERO EXPERIENCE
   ========================================================= */
.hero-production {
  --hero-progress: 0;
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
}

.hero-production__copy,
.hero-production__stage {
  will-change: transform;
}

.hero-production__stage {
  transform-origin: 50% 45%;
  transition: box-shadow 500ms ease;
}

.hero-production__stage:hover {
  box-shadow:
    0 52px 120px rgba(14, 31, 75, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.hero-production__mesh {
  transform: translate3d(var(--hero-pointer-x), var(--hero-pointer-y), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.hero-production__scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  height: 3px;
  background: rgba(41, 72, 200, 0.08);
  pointer-events: none;
}

.hero-production__scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--hero-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, #2948c8, #c92d3b, #198754);
  will-change: transform;
}

.hero-production__stage-label i {
  animation: hero-live-pulse 2.2s ease-in-out infinite;
}

.hero-production__bottomline a i {
  animation: hero-scroll-cue 1.8s ease-in-out infinite;
}

.hero-production__card {
  backdrop-filter: blur(15px) saturate(1.12);
  -webkit-backdrop-filter: blur(15px) saturate(1.12);
}

.hero-production__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.14) 48%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.hero-production__card:hover::after {
  transform: translateX(130%);
}

@keyframes hero-live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .68; }
}

@keyframes hero-scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 980px) {
  .hero-production__copy,
  .hero-production__stage {
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-production__mesh,
  .hero-production__stage,
  .hero-production__card::after {
    transition: none;
    transform: none;
  }

  .hero-production__stage-label i,
  .hero-production__bottomline a i {
    animation: none;
  }

  .hero-production__scroll-progress span {
    transform: none;
  }
}

/* =========================================================
   Premium Sprint 9 — Product showcase
   ========================================================= */
.product-universe {
  position: relative;
  overflow: clip;
  isolation: isolate;
}
.product-universe::before,
.product-universe::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .5;
}
.product-universe::before {
  width: 28rem;
  height: 28rem;
  top: 6%;
  right: -12rem;
  background: radial-gradient(circle, rgba(13, 91, 181, .16), transparent 68%);
}
.product-universe::after {
  width: 24rem;
  height: 24rem;
  bottom: 2%;
  left: -10rem;
  background: radial-gradient(circle, rgba(30, 117, 82, .12), transparent 68%);
}
.product-grid--visual {
  perspective: 1400px;
  gap: clamp(1rem, 2vw, 1.6rem);
}
.product-grid--visual .product-card--photo {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  min-height: clamp(26rem, 38vw, 34rem);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transition: transform .45s cubic-bezier(.2,.75,.25,1), box-shadow .45s ease, border-color .45s ease;
  box-shadow: 0 22px 55px rgba(12, 28, 52, .13);
  will-change: transform;
}
.product-grid--visual .product-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.17) 42%, transparent 62%);
  transform: translateX(-125%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.product-grid--visual .product-card--photo:hover::before,
.product-grid--visual .product-card--photo:focus-visible::before {
  transform: translateX(125%);
}
.product-grid--visual .product-card--photo > img {
  transform: scale(1.035) translateZ(0);
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(.92) contrast(1.02);
}
.product-grid--visual .product-card--photo:hover > img,
.product-grid--visual .product-card--photo:focus-visible > img,
.product-grid--visual .product-card--photo.is-interacting > img {
  transform: scale(1.105) translate3d(calc((50% - var(--pointer-x)) * .045), calc((50% - var(--pointer-y)) * .045), 18px);
  filter: saturate(1.05) contrast(1.04);
}
.product-card__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.3), transparent 32%);
  transition: opacity .35s ease;
}
.product-card:hover .product-card__glow,
.product-card:focus-visible .product-card__glow,
.product-card.is-interacting .product-card__glow {
  opacity: 1;
}
.product-card__frame {
  position: absolute;
  inset: .65rem;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 1.05rem;
  opacity: .55;
  transition: inset .45s ease, opacity .45s ease;
}
.product-card:hover .product-card__frame,
.product-card:focus-visible .product-card__frame {
  inset: .9rem;
  opacity: .9;
}
.product-card--photo .product-card__shade {
  background: linear-gradient(180deg, rgba(3,13,27,.04) 15%, rgba(3,13,27,.22) 48%, rgba(3,13,27,.9) 100%);
}
.product-card--photo .product-card__copy {
  z-index: 6;
  transform: translateZ(36px);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  transition: transform .45s cubic-bezier(.2,.75,.25,1);
  backdrop-filter: blur(2px);
}
.product-card--photo:hover .product-card__copy,
.product-card--photo:focus-visible .product-card__copy {
  transform: translate3d(0, -7px, 48px);
}
.product-card--photo .product-card__copy > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.1rem;
  padding: 0 .65rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.product-card--photo .product-card__copy a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  position: relative;
  padding-bottom: .25rem;
}
.product-card--photo .product-card__copy a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(.32);
  transform-origin: left;
  transition: transform .35s ease;
}
.product-card--photo:hover .product-card__copy a::after,
.product-card--photo:focus-visible .product-card__copy a::after {
  transform: scaleX(1);
}
.product-card--photo:focus-visible {
  outline: 3px solid rgba(22, 109, 204, .42);
  outline-offset: 4px;
}
@media (hover: none), (pointer: coarse) {
  .product-grid--visual .product-card--photo {
    transform: none;
  }
  .product-card__glow { display: none; }
}
@media (max-width: 700px) {
  .product-grid--visual .product-card--photo {
    min-height: 27rem;
    border-radius: 1.25rem;
  }
  .product-card__frame { inset: .55rem; }
}
@media (prefers-reduced-motion: reduce) {
  .product-grid--visual .product-card--photo,
  .product-grid--visual .product-card--photo > img,
  .product-card--photo .product-card__copy,
  .product-grid--visual .product-card--photo::before {
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Premium Sprint 10 — UI/UX polish
   ========================================================= */
:root {
  --ease-premium: cubic-bezier(.16, 1, .3, 1);
  --focus-ring: 0 0 0 4px rgba(41, 72, 200, .18);
}

::selection {
  background: rgba(41, 72, 200, .18);
  color: var(--navy);
}

main > section[id],
.brand-showcase article[id] {
  scroll-margin-top: 86px;
}

h1, h2, h3 {
  text-wrap: balance;
}

.heading > p,
.copy > p,
.brand-copy-block > p,
.network-copy > p,
.contact-grid > div > p {
  text-wrap: pretty;
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(41, 72, 200, .42);
  outline-offset: 4px;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1600;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, .08);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--brown), var(--green));
  box-shadow: 0 0 18px rgba(41, 72, 200, .34);
  will-change: transform;
}

.header {
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: rgba(19, 23, 34, .06);
}

.navlinks a {
  padding: .45rem .1rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  transition: color .3s var(--ease-premium);
}

.navlinks a:hover,
.navlinks a.active,
.navlinks a[aria-current="location"] {
  color: var(--ink);
}

.navlinks a:after {
  bottom: -.22rem;
  height: 2px;
  border-radius: 99px;
  box-shadow: 0 3px 10px rgba(41, 72, 200, .24);
}

.btn,
.listen-btn,
.menu {
  --mag-x: 0px;
  --mag-y: 0px;
}

.ui-polish .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--button-lift, 0px)), 0);
  transition:
    transform .42s var(--ease-premium),
    background-color .3s ease,
    border-color .3s ease,
    color .3s ease,
    box-shadow .42s var(--ease-premium);
}

.ui-polish .btn:hover {
  --button-lift: -3px;
}

.ui-polish .btn:active {
  --button-lift: 0px;
  transition-duration: .12s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 24%, rgba(255,255,255,.22) 48%, transparent 72%);
  transform: translateX(-140%);
  transition: transform .75s var(--ease-premium);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(140%);
}

.button-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, .32);
  transform: scale(0);
  animation: ui-button-ripple .65s ease-out forwards;
}

.btn-light .button-ripple,
.btn-white .button-ripple {
  background: rgba(41, 72, 200, .14);
}

@keyframes ui-button-ripple {
  to { transform: scale(1); opacity: 0; }
}

.ui-polish .listen-btn,
.ui-polish .menu {
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
}

.trust article,
.service-grid article,
.why-panels article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.trust article > :not(.ui-card-light),
.service-grid article > :not(.ui-card-light),
.why-panels article > :not(.ui-card-light) {
  position: relative;
  z-index: 1;
}

.ui-card-light {
  position: absolute;
  z-index: 0;
  width: 270px;
  height: 270px;
  left: calc(var(--spot-x, 50%) - 135px);
  top: calc(var(--spot-y, 50%) - 135px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(41, 72, 200, .12), transparent 68%);
  transition: opacity .4s ease;
}

.trust article:hover .ui-card-light,
.service-grid article:hover .ui-card-light,
.why-panels article:hover .ui-card-light {
  opacity: 1;
}

.trust article,
.service-grid article {
  border-color: rgba(23, 53, 159, .09);
}

.trust article:hover,
.service-grid article:hover {
  border-color: rgba(41, 72, 200, .2);
}

.service-grid article:hover i {
  transform: rotate(-7deg) scale(1.07);
  box-shadow: 0 10px 25px rgba(41, 72, 200, .14);
}

.service-grid i {
  transition: transform .42s var(--ease-premium), box-shadow .42s var(--ease-premium);
}

.textlink,
.service-grid a,
.foot-grid a {
  position: relative;
  width: max-content;
}

.textlink::after,
.service-grid a::after,
.foot-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.22rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .38s var(--ease-premium);
}

.textlink:hover::after,
.textlink:focus-visible::after,
.service-grid a:hover::after,
.service-grid a:focus-visible::after,
.foot-grid a:hover::after,
.foot-grid a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact label {
  position: relative;
  padding: .28rem;
  border-radius: 1.05rem;
  transition: background .3s ease, transform .3s var(--ease-premium);
}

.contact label.is-focused {
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

.contact label span {
  transition: color .25s ease, transform .25s var(--ease-premium);
}

.contact label.is-focused span,
.contact label.is-filled span {
  color: #fff;
}

input,
textarea {
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -14rem;
  top: -20rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(41,72,200,.16), transparent 68%);
}

.foot-grid,
.foot-bottom {
  position: relative;
  z-index: 1;
}

.foot-grid a {
  transition: color .3s ease, transform .35s var(--ease-premium);
}

.foot-grid a:hover {
  color: #fff;
  transform: translateX(4px);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(11,18,32,.86);
  color: #fff;
  box-shadow: 0 14px 38px rgba(5,10,20,.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  transition: opacity .3s ease, visibility .3s ease, transform .4s var(--ease-premium), background .3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

body.open .back-to-top {
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-4px) scale(1.03);
}

.back-to-top span {
  font-size: 1.15rem;
  line-height: 1;
}

.ui-cursor,
.ui-cursor__dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1800;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}

.ui-cursor {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(41,72,200,.58);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
  transition: width .25s var(--ease-premium), height .25s var(--ease-premium), margin .25s var(--ease-premium), background .25s ease, border-color .25s ease, opacity .2s ease;
}

.ui-cursor__dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--blue);
  transition: opacity .2s ease, transform .04s linear;
}

.cursor-visible .ui-cursor,
.cursor-visible .ui-cursor__dot {
  opacity: 1;
}

.ui-cursor.is-interactive {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: rgba(41,72,200,.3);
  background: rgba(41,72,200,.1);
}

.ui-cursor.is-pressed {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}

main > section {
  --section-presence: 0;
}

main > section.is-in-view {
  --section-presence: 1;
}

@media (max-width: 900px) {
  .navlinks {
    counter-reset: ui-mobile-nav;
  }

  .navlinks a {
    counter-increment: ui-mobile-nav;
    display: grid;
    grid-template-columns: 2rem auto;
    align-items: baseline;
    justify-content: center;
    gap: .8rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .35s ease, transform .5s var(--ease-premium), color .3s ease;
  }

  .navlinks a::before {
    content: "0" counter(ui-mobile-nav);
    color: var(--blue);
    font: 700 .65rem var(--body);
    letter-spacing: .12em;
  }

  .navlinks.show a {
    opacity: 1;
    transform: translateY(0);
  }

  .navlinks.show a:nth-child(2) { transition-delay: .04s; }
  .navlinks.show a:nth-child(3) { transition-delay: .08s; }
  .navlinks.show a:nth-child(4) { transition-delay: .12s; }
  .navlinks.show a:nth-child(5) { transition-delay: .16s; }
  .navlinks.show a:nth-child(6) { transition-delay: .2s; }

  .navlinks a::after {
    display: none;
  }

  .back-to-top {
    right: .85rem;
    bottom: .85rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .ui-cursor,
  .ui-cursor__dot {
    display: none;
  }

  .ui-polish .btn,
  .ui-polish .listen-btn,
  .ui-polish .menu {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress span,
  .btn::before,
  .button-ripple,
  .back-to-top,
  .navlinks a,
  .ui-card-light {
    animation: none !important;
    transition: none !important;
  }

  .ui-cursor,
  .ui-cursor__dot {
    display: none;
  }
}



/* =========================================================
   Production Sprint 11 — resilience, accessibility and forms
   ========================================================= */

.noscript-banner {
  position: relative;
  z-index: 3000;
  padding: .75rem 1rem;
  background: #fff3cd;
  color: #3d3100;
  border-bottom: 1px solid #e7cf79;
  font: 600 .82rem/1.5 var(--body);
  text-align: center;
}

.form-note {
  margin: -.15rem 0 .2rem;
  color: rgba(255,255,255,.64);
  font-size: .76rem;
  line-height: 1.55;
}

.status {
  min-height: 1.5em;
}

.status.is-success {
  color: #c9f8dc;
}

.status.is-error {
  color: #ffd2d2;
}

.contact button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.product-card img {
  height: 100%;
}

.hero-production__stage--fallback #hero-logistics-v1,
.network-map--fallback #network-globe {
  opacity: .18;
}

.hero-production__stage--fallback::after,
.network-map--fallback::after {
  content: "Interactive visualization unavailable";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,26,58,.74);
  color: rgba(255,255,255,.8);
  font: 600 .68rem/1.2 var(--body);
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

@supports (padding: max(0px)) {
  .header {
    padding-top: env(safe-area-inset-top);
  }

  .back-to-top {
    right: max(1.25rem, env(safe-area-inset-right));
    bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-contrast: more) {
  .btn,
  input,
  textarea,
  .listen-btn,
  .map-node {
    border-width: 2px;
  }

  .navlinks a,
  .lead,
  .heading > p,
  .copy > p {
    color: currentColor;
  }
}

@media (forced-colors: active) {
  .btn,
  .listen-btn,
  .menu,
  .map-node,
  .back-to-top {
    forced-color-adjust: auto;
  }

  .page-progress,
  .ui-cursor,
  .ui-cursor__dot,
  .ui-card-light,
  .button-ripple {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header,
  .audio-dock,
  .back-to-top,
  .hero-production__card {
    backdrop-filter: none;
  }
}

/* =========================================================
   PREMIUM SPRINT 12 — GLOBAL NETWORK EXPERIENCE
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.network-section[data-network-experience] {
  --network-blue: #5d7fff;
  --network-green: #41d58a;
  --network-warm: #ffb45f;
  position: relative;
  min-height: 100svh;
  padding: clamp(7.5rem, 11vw, 11rem) 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 34%, rgba(55, 92, 214, 0.28), transparent 29%),
    radial-gradient(circle at 92% 78%, rgba(47, 189, 120, 0.11), transparent 25%),
    linear-gradient(145deg, #050a13 0%, #0a1428 48%, #071631 100%);
}

.network-section[data-network-experience]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.36;
  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: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.network-aurora {
  position: absolute;
  z-index: -1;
  width: 44rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.2;
  pointer-events: none;
}

.network-aurora--one {
  right: -15rem;
  top: -9rem;
  background: #2948c8;
}

.network-aurora--two {
  left: 24%;
  bottom: -25rem;
  background: #198754;
  opacity: 0.11;
}

.network-section[data-network-experience] .network-grid {
  grid-template-columns: minmax(0, 0.77fr) minmax(560px, 1.23fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

.network-section[data-network-experience] .network-copy {
  position: sticky;
  top: 118px;
  z-index: 4;
}

.network-section[data-network-experience] .network-copy h2 {
  max-width: 8.3ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 5.6vw, 6.1rem);
  line-height: 0.91;
  text-wrap: balance;
}

.network-section[data-network-experience] .network-copy > p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 2rem 0 1rem;
}

.network-metric {
  min-width: 0;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.network-metric strong {
  display: block;
  color: #fff;
  font: 650 clamp(1.55rem, 2.2vw, 2.2rem)/1 var(--head);
  letter-spacing: -0.05em;
}

.network-metric span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.network-section[data-network-experience] .network-detail {
  position: relative;
  margin-top: 1rem;
  padding: 1.45rem;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(93, 127, 255, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.network-section[data-network-experience] .network-detail::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  top: -4rem;
  width: 9rem;
  aspect-ratio: 1;
  border: 1px solid rgba(93, 127, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(93, 127, 255, 0.16);
}

.network-section[data-network-experience] .network-detail strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.network-section[data-network-experience] .network-detail p {
  position: relative;
  z-index: 1;
  min-height: 4.25em;
  color: rgba(255, 255, 255, 0.61);
}

.network-detail__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.network-detail__facts small,
.network-detail__facts b {
  display: block;
}

.network-detail__facts small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.network-detail__facts b {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 650;
}

.network-region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.network-region-list button,
.network-controls button {
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.68);
  font: 700 0.68rem/1 var(--body);
  cursor: pointer;
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.network-region-list button {
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.network-region-list button:hover,
.network-region-list button:focus-visible,
.network-region-list button.is-selected {
  border-color: rgba(65, 213, 138, 0.46);
  background: rgba(65, 213, 138, 0.11);
  color: #dffcef;
  transform: translateY(-2px);
}

.network-visual {
  position: relative;
  min-width: 0;
}

.network-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  margin-bottom: 0.8rem;
}

.network-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.network-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--network-green);
  box-shadow: 0 0 0 6px rgba(65, 213, 138, 0.1), 0 0 18px rgba(65, 213, 138, 0.8);
  animation: networkLivePulse 2.2s ease-in-out infinite;
}

.network-controls {
  display: flex;
  gap: 0.5rem;
}

.network-controls button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
}

.network-controls button i {
  color: var(--network-blue);
  font-style: normal;
  font-size: 0.92rem;
}

.network-controls button:hover,
.network-controls button:focus-visible {
  border-color: rgba(93, 127, 255, 0.4);
  background: rgba(93, 127, 255, 0.11);
  color: #fff;
  transform: translateY(-2px);
}

.network-section[data-network-experience] .network-map {
  min-height: clamp(590px, 58vw, 760px);
  border-color: rgba(138, 160, 255, 0.18);
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 50% 47%, rgba(52, 91, 214, 0.22), transparent 27%),
    radial-gradient(circle at 76% 73%, rgba(47, 189, 120, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(17, 30, 57, 0.94), rgba(3, 8, 17, 0.98) 75%);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.055),
    inset 0 0 110px rgba(41, 72, 200, 0.12);
  transform-style: preserve-3d;
}

.network-section[data-network-experience] .network-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 20%, transparent 75%, rgba(93, 127, 255, 0.04)),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.4), transparent 42%);
  pointer-events: none;
}

.network-section[data-network-experience] #network-globe {
  z-index: 2;
  filter:
    drop-shadow(0 45px 65px rgba(0, 0, 0, 0.48))
    saturate(1.08);
}

.network-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.58;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 17%, rgba(134, 158, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 65% 78%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.5px),
    radial-gradient(circle at 31% 67%, rgba(65, 213, 138, 0.52) 0 1px, transparent 1.5px);
  background-size: 170px 170px, 220px 220px, 260px 260px, 310px 310px;
  animation: networkStarsDrift 28s linear infinite;
  pointer-events: none;
}

.network-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  border: 1px solid rgba(116, 143, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.network-orbit--one {
  width: 78%;
  aspect-ratio: 1.55;
  transform: translate(-50%, -50%) rotate(-11deg);
}

.network-orbit--two {
  width: 55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(72deg);
  border-color: rgba(65, 213, 138, 0.1);
}

.network-section[data-network-experience] .network-map > svg {
  z-index: 1;
  opacity: 0.065;
}

.network-section[data-network-experience] .map-grid {
  z-index: 0;
  opacity: 0.2;
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000, transparent 82%);
}

.network-section[data-network-experience] .map-node {
  z-index: 7;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.network-section[data-network-experience] .map-node i {
  width: 12px;
  height: 12px;
  border-width: 2px;
  background: var(--network-blue);
  box-shadow:
    0 0 0 7px rgba(93, 127, 255, 0.12),
    0 0 25px rgba(93, 127, 255, 0.72);
  transition: 0.35s var(--ease);
}

.network-section[data-network-experience] .map-node span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(5, 12, 27, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(9px);
}

.network-section[data-network-experience] .map-node.is-selected i {
  background: var(--network-green);
  box-shadow:
    0 0 0 10px rgba(65, 213, 138, 0.11),
    0 0 34px rgba(65, 213, 138, 0.88);
}

.network-section[data-network-experience] .map-node.is-selected span {
  border-color: rgba(65, 213, 138, 0.3);
  color: #e7fff3;
}

.network-section[data-network-experience] .scene-badge--network {
  left: 1.2rem;
  top: 1.2rem;
  z-index: 8;
  padding: 0.62rem 0.78rem;
  border-color: rgba(93, 127, 255, 0.22);
  background: rgba(6, 15, 31, 0.68);
  color: rgba(225, 232, 255, 0.74);
  backdrop-filter: blur(12px);
}

.network-hud {
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.37);
  font: 700 0.58rem/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-hud i {
  display: block;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 127, 255, 0.65), transparent);
}

.network-instruction {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.72rem;
  text-align: right;
}

.network-map--texture-fallback #network-globe {
  opacity: 0.86;
}

@keyframes networkLivePulse {
  0%, 100% { transform: scale(0.88); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes networkStarsDrift {
  to { background-position: 170px 85px, -220px 110px, 130px -260px, -155px -155px; }
}

@media (max-width: 1120px) {
  .network-section[data-network-experience] .network-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .network-section[data-network-experience] .network-copy {
    position: relative;
    top: auto;
    max-width: 820px;
  }

  .network-section[data-network-experience] .network-copy h2 {
    max-width: 10ch;
  }

  .network-metrics {
    max-width: 720px;
  }

  .network-section[data-network-experience] .network-map {
    min-height: 680px;
  }
}

@media (max-width: 700px) {
  .network-section[data-network-experience] {
    padding: 6.8rem 0;
  }

  .network-section[data-network-experience] .network-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .network-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .network-metric:last-child {
    grid-column: 1 / -1;
  }

  .network-detail__facts {
    grid-template-columns: 1fr;
  }

  .network-section[data-network-experience] .network-detail p {
    min-height: 0;
  }

  .network-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .network-controls {
    width: 100%;
  }

  .network-controls button {
    flex: 1;
    justify-content: center;
  }

  .network-section[data-network-experience] .network-map {
    min-height: 520px;
    border-radius: 1.5rem;
  }

  .network-section[data-network-experience] .map-node span {
    display: none;
  }

  .network-region-list {
    gap: 0.45rem;
  }

  .network-region-list button {
    flex: 1 1 auto;
  }

  .network-hud,
  .network-instruction {
    display: none;
  }
}

@media (max-width: 430px) {
  .network-metrics {
    grid-template-columns: 1fr;
  }

  .network-metric:last-child {
    grid-column: auto;
  }

  .network-section[data-network-experience] .network-map {
    min-height: 460px;
  }

  .network-section[data-network-experience] .scene-badge--network {
    display: block;
    max-width: calc(100% - 2rem);
    font-size: 0.54rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-live i,
  .network-stars,
  .network-section[data-network-experience] .route {
    animation: none !important;
  }

  .network-section[data-network-experience] .network-map,
  .network-region-list button,
  .network-controls button,
  .network-section[data-network-experience] .map-node {
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  .network-metric,
  .network-section[data-network-experience] .network-detail,
  .network-region-list button,
  .network-controls button {
    border-color: rgba(255, 255, 255, 0.34);
  }

  .network-section[data-network-experience] .network-copy > p,
  .network-section[data-network-experience] .network-detail p,
  .network-metric span,
  .network-instruction {
    color: rgba(255, 255, 255, 0.82);
  }
}

/* Sprint 12 visual refinements after responsive QA. */
@media (min-width: 1121px) {
  .network-section[data-network-experience] .network-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(3.2rem, 4.5vw, 5.4rem);
  }
}

.network-section[data-network-experience] .network-map--fallback::after {
  top: auto;
  bottom: 1.1rem;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .network-section[data-network-experience] .network-map--fallback::after {
    display: none;
  }
}


/* =========================================================
   SPRINT 13.1 — ABOUT SKY SOURCE (BALANCED REFINEMENT)
   Clear two-column editorial layout with a readable process panel.
   ========================================================= */
.about-v3 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(41, 72, 200, .07), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.about-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(19, 23, 34, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 23, 34, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.about-v3 .container {
  position: relative;
  z-index: 1;
}

.about-v3__header {
  padding-bottom: clamp(2.8rem, 5vw, 4.8rem);
  border-bottom: 1px solid rgba(19, 23, 34, .11);
}

.about-v3__kicker {
  justify-content: space-between;
  margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.about-v3__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: end;
}

.about-v3__heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.25rem);
  line-height: .94;
  letter-spacing: -.064em;
}

.about-v3__heading h2 span {
  color: var(--blue);
}

.about-v3__heading > p {
  max-width: 520px;
  margin: 0 0 .35rem;
  color: #4d5667;
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  line-height: 1.72;
}

.about-v3__layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding-top: clamp(3.4rem, 6vw, 6rem);
}

.about-v3__story {
  max-width: 540px;
  padding-top: .35rem;
}

.about-v3__lead {
  margin: 0 0 2.25rem;
  color: #333b49;
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.76;
}

.about-v3__principles {
  border-top: 1px solid rgba(19, 23, 34, .13);
}

.about-v3__principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(19, 23, 34, .13);
}

.about-v3__principles article > span {
  padding-top: .15rem;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.about-v3__principles h3 {
  margin: 0 0 .34rem;
  color: var(--ink);
  font-size: 1.06rem;
  letter-spacing: -.025em;
}

.about-v3__principles p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.62;
}

.about-v3__link {
  margin-top: 1.7rem;
}

.about-v3__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 54% 44%, rgba(41, 72, 200, .25), transparent 31%),
    linear-gradient(145deg, #07101f 0%, #101d36 55%, #081120 100%);
  box-shadow: 0 30px 80px rgba(11, 18, 32, .17);
  color: #fff;
}

.about-v3__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.about-v3__panel-head,
.about-v3__pipeline,
.about-v3__facts {
  position: relative;
  z-index: 1;
}

.about-v3__panel-head {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.about-v3__panel-head div > span {
  display: block;
  margin-bottom: .35rem;
  color: #8fa5ff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-v3__panel-head strong {
  display: block;
  max-width: 380px;
  font: 650 clamp(1.08rem, 1.6vw, 1.35rem)/1.35 var(--head);
  letter-spacing: -.025em;
}

.about-v3__status {
  display: inline-flex;
  flex: 0 0 auto;
  gap: .45rem;
  align-items: center;
  padding: .55rem .72rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .67);
  background: rgba(255, 255, 255, .045);
  font-size: .66rem;
  font-weight: 700;
}

.about-v3__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35a86c;
  box-shadow: 0 0 12px #35a86c;
}

.about-v3__pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  padding: clamp(2.2rem, 4.5vw, 4rem) 0 clamp(2rem, 4vw, 3.4rem);
}

.about-v3__pipeline::before {
  content: "";
  position: absolute;
  top: calc(clamp(2.2rem, 4.5vw, 4rem) + 43px);
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, #5d79ff, #db4252, #a8734b, #35a86c);
  opacity: .65;
}

.about-v3__stage {
  position: relative;
  min-width: 0;
  padding: 0 .65rem;
  text-align: center;
}

.about-v3__stage > span {
  display: block;
  margin-bottom: .8rem;
  color: rgba(255, 255, 255, .4);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.about-v3__stage > i {
  position: relative;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 1.35rem;
  border: 4px solid #0d1930;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 1px currentColor, 0 0 18px currentColor;
}

.about-v3__stage h3 {
  margin: 0 0 .55rem;
  color: #fff;
  font-size: clamp(.9rem, 1.15vw, 1.03rem);
  letter-spacing: -.02em;
}

.about-v3__stage p {
  max-width: 150px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .49);
  font-size: .72rem;
  line-height: 1.52;
}

.about-v3__stage--source { color: #5d79ff; }
.about-v3__stage--verify { color: #db4252; }
.about-v3__stage--coordinate { color: #a8734b; }
.about-v3__stage--deliver { color: #35a86c; }

.about-v3__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .1);
}

.about-v3__facts div {
  min-width: 0;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, .045);
}

.about-v3__facts strong,
.about-v3__facts span {
  display: block;
}

.about-v3__facts strong {
  color: #fff;
  font: 650 .92rem/1.2 var(--head);
}

.about-v3__facts span {
  margin-top: .3rem;
  color: rgba(255, 255, 255, .42);
  font-size: .65rem;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .about-v3__heading,
  .about-v3__layout {
    grid-template-columns: 1fr;
  }

  .about-v3__heading {
    gap: 1.8rem;
  }

  .about-v3__heading > p,
  .about-v3__story {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .about-v3 {
    padding: 7rem 0;
  }

  .about-v3__heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
  }

  .about-v3__layout {
    gap: 2.8rem;
    padding-top: 3rem;
  }

  .about-v3__panel {
    padding: 1.15rem;
    border-radius: 1.35rem;
  }

  .about-v3__panel-head {
    display: block;
  }

  .about-v3__status {
    margin-top: 1rem;
  }

  .about-v3__pipeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem .75rem;
    padding: 2.4rem 0 2.2rem;
  }

  .about-v3__pipeline::before {
    display: none;
  }

  .about-v3__stage {
    padding: 1rem .65rem;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: .9rem;
    background: rgba(255, 255, 255, .035);
  }

  .about-v3__stage > span {
    margin-bottom: .55rem;
  }

  .about-v3__stage > i {
    margin-bottom: .9rem;
  }

  .about-v3__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .about-v3__kicker {
    align-items: flex-start;
  }

  .about-v3__heading h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .about-v3__pipeline {
    grid-template-columns: 1fr;
  }

  .about-v3__stage p {
    max-width: 240px;
  }
}



/* =========================================================
   SPRINT 14 — HERO LOGISTICS SCENE
   Replaces the duplicate hero globe with a procedural cargo ship,
   container stacks and port cranes. The Global Network globe remains.
   ========================================================= */
.hero-production__stage.is-logistics {
  background:
    radial-gradient(circle at 73% 21%, rgba(63, 120, 255, .24), transparent 28%),
    radial-gradient(circle at 20% 77%, rgba(55, 219, 139, .13), transparent 34%),
    linear-gradient(155deg, #17366f 0%, #0b1d42 43%, #050b19 100%);
}

#hero-logistics-v1 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-production__stage.is-logistics .hero-production__halo {
  left: 53%;
  top: 58%;
  border-radius: 50%;
  opacity: .42;
}

.hero-production__stage.is-logistics .halo-a {
  width: 83%;
  aspect-ratio: 2.15 / 1;
  transform: translate(-50%, -50%) rotateX(74deg) rotateZ(-8deg);
}

.hero-production__stage.is-logistics .halo-b {
  width: 61%;
  aspect-ratio: 2.4 / 1;
  transform: translate(-50%, -50%) rotateX(69deg) rotateZ(19deg);
  border-color: rgba(55, 219, 139, .17);
}

.hero-production__stage.is-logistics .hero-production__coordinates {
  color: rgba(255, 255, 255, .48);
  letter-spacing: .1em;
}

.hero-production__stage.is-logistics .card-route {
  top: 92px;
}

.hero-production__stage.is-logistics .card-origin {
  bottom: 86px;
}

.hero-production__stage.is-logistics .card-procurement {
  bottom: 90px;
}

.hero-production__stage--fallback #hero-logistics-v1 {
  opacity: .16;
}

@media (max-width: 620px) {
  .hero-production__stage.is-logistics .card-route {
    top: 70px;
  }

  .hero-production__stage.is-logistics .hero-production__coordinates {
    display: none;
  }
}

/* =========================================================
   SPRINT 15 — REFINED HERO LOGISTICS SCENE
   Cinematic port composition, reduced interface clutter and
   improved visual balance for the procedural Three.js scene.
   ========================================================= */
.hero-production__stage.is-logistics-v2 {
  min-height: 620px;
  background:
    radial-gradient(circle at 78% 18%, rgba(69, 124, 255, .24), transparent 29%),
    radial-gradient(circle at 16% 78%, rgba(37, 194, 147, .12), transparent 33%),
    linear-gradient(155deg, #17366d 0%, #0a1d42 44%, #040a17 100%);
  box-shadow:
    0 46px 110px rgba(8, 24, 63, .34),
    inset 0 0 0 1px rgba(255, 255, 255, .095),
    inset 0 -80px 130px rgba(0, 0, 0, .26);
}

.hero-production__stage.is-logistics-v2::before {
  opacity: .32;
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}

.hero-production__stage.is-logistics-v2::after {
  inset: auto 10% 5%;
  height: 20%;
  opacity: .52;
  filter: blur(26px);
  background: radial-gradient(ellipse, rgba(54, 118, 255, .2), transparent 69%);
}

.hero-production__stage.is-logistics-v2 .hero-production__halo {
  opacity: .18;
  filter: blur(.2px);
}

.hero-production__stage.is-logistics-v2 .halo-a {
  width: 72%;
  top: 69%;
  left: 50%;
}

.hero-production__stage.is-logistics-v2 .halo-b {
  width: 53%;
  top: 62%;
  left: 52%;
}

.hero-production__stage.is-logistics-v2 .hero-production__stage-label,
.hero-production__stage.is-logistics-v2 .hero-production__coordinates {
  top: 27px;
}

.hero-production__stage.is-logistics-v2 .hero-production__stage-label {
  left: 30px;
  color: rgba(255,255,255,.72);
  letter-spacing: .155em;
}

.hero-production__stage.is-logistics-v2 .hero-production__coordinates {
  right: 30px;
  color: rgba(255,255,255,.42);
  letter-spacing: .12em;
}

.hero-production__stage.is-logistics-v2 .hero-production__card--operation {
  top: auto;
  right: 25px;
  bottom: 78px;
  min-width: 190px;
  padding: 12px 14px;
  background: linear-gradient(145deg, rgba(10, 27, 59, .76), rgba(3, 11, 27, .66));
  border-color: rgba(151, 180, 255, .18);
  box-shadow:
    0 20px 46px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-production__stage.is-logistics-v2 .hero-production__card--operation strong {
  font-size: .78rem;
  margin-top: 3px;
}

.hero-production__operation-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: rgba(255,255,255,.58);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-production__operation-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37db8b;
  box-shadow: 0 0 12px rgba(55,219,139,.82);
}

.hero-production__stage.is-logistics-v2 .hero-production__ticker {
  height: 46px;
  gap: 15px;
  background: linear-gradient(90deg, rgba(2,8,20,.82), rgba(9,24,52,.64), rgba(2,8,20,.82));
  color: rgba(255,255,255,.45);
}

@media (max-width: 1120px) {
  .hero-production__stage.is-logistics-v2 {
    min-height: 590px;
  }
}

@media (max-width: 760px) {
  .hero-production__stage.is-logistics-v2 {
    min-height: 520px;
  }

  .hero-production__stage.is-logistics-v2 .hero-production__card--operation {
    right: 16px;
    bottom: 64px;
    min-width: 0;
    padding: 10px 12px;
  }

  .hero-production__stage.is-logistics-v2 .hero-production__card--operation strong {
    font-size: .7rem;
  }

  .hero-production__operation-status {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-production__stage.is-logistics-v2 {
    min-height: 470px;
    border-radius: 25px;
  }

  .hero-production__stage.is-logistics-v2 .hero-production__stage-label {
    left: 18px;
    top: 19px;
    font-size: .53rem;
  }

  .hero-production__stage.is-logistics-v2 .hero-production__card--operation {
    display: none;
  }

  .hero-production__stage.is-logistics-v2 .hero-production__ticker {
    font-size: .48rem;
    gap: 10px;
  }
}


/* =========================================================
   SPRINT 16 — CINEMATIC HERO LOGISTICS FINISH
   Refines atmosphere, framing and interface hierarchy while the
   procedural ship, port and cargo operation remain lightweight.
   ========================================================= */
.hero-production__stage.is-logistics-v3 {
  background:
    radial-gradient(circle at 76% 16%, rgba(90, 143, 255, .28), transparent 27%),
    radial-gradient(circle at 17% 78%, rgba(36, 213, 164, .14), transparent 31%),
    linear-gradient(158deg, #17396f 0%, #0a1c3c 45%, #030815 100%);
  box-shadow:
    0 50px 120px rgba(5, 20, 56, .38),
    0 12px 32px rgba(27, 70, 149, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .105),
    inset 0 -110px 150px rgba(0, 0, 0, .34);
}

.hero-production__stage.is-logistics-v3::before {
  opacity: .22;
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 72%);
}

.hero-production__stage.is-logistics-v3::after {
  inset: auto 8% 2%;
  height: 30%;
  opacity: .62;
  filter: blur(34px);
  background:
    radial-gradient(ellipse at center, rgba(46, 132, 255, .20), rgba(31, 214, 170, .08) 42%, transparent 70%);
}

.hero-production__stage.is-logistics-v3 #hero-logistics-v1 {
  filter: saturate(1.08) contrast(1.025);
}

.hero-production__stage.is-logistics-v3 .hero-production__stage-label {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(5, 15, 36, .34);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.76);
}

.hero-production__stage.is-logistics-v3 .hero-production__coordinates {
  padding: 8px 10px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.46);
}

.hero-production__stage.is-logistics-v3 .hero-production__halo {
  opacity: .11;
}

.hero-production__stage.is-logistics-v3 .hero-production__card--operation {
  right: 24px;
  bottom: 76px;
  min-width: 202px;
  border-color: rgba(150, 184, 255, .20);
  background: linear-gradient(145deg, rgba(11, 29, 64, .78), rgba(4, 12, 29, .70));
  box-shadow:
    0 24px 58px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.hero-production__stage.is-logistics-v3 .hero-production__operation-status {
  color: rgba(196, 255, 227, .8);
}

.hero-production__stage.is-logistics-v3 .hero-production__ticker {
  background: linear-gradient(90deg, rgba(2,8,20,.92), rgba(7,20,46,.76), rgba(2,8,20,.92));
  border-top-color: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}

@media (max-width: 760px) {
  .hero-production__stage.is-logistics-v3 {
    min-height: 520px;
  }

  .hero-production__stage.is-logistics-v3 .hero-production__stage-label {
    top: 18px;
    left: 18px;
    font-size: .56rem;
  }

  .hero-production__stage.is-logistics-v3 .hero-production__card--operation {
    right: 16px;
    bottom: 68px;
    min-width: 176px;
  }
}

/* =========================================================
   Sprint 17 — Premium Brands & Partner Ecosystem
   ========================================================= */
.brand-experience {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(41, 72, 200, 0.2), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(25, 135, 84, 0.12), transparent 28%),
    linear-gradient(145deg, #060b14 0%, #0b1424 54%, #07101d 100%);
  color: #fff;
}
.brand-experience:before {
  content: "";
  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: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}
.brand-experience > .container {
  position: relative;
  z-index: 1;
}
.brand-experience__heading {
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.brand-experience__heading h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.brand-experience__heading h2 span {
  color: #6483ff;
}
.brand-experience__heading > p {
  max-width: 520px;
  color: rgba(230, 236, 249, 0.7);
}
.brand-experience__shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.31fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
.brand-switcher {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.brand-switcher__tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.brand-switcher__tab:hover,
.brand-switcher__tab:focus-visible {
  transform: translateX(3px);
  border-color: rgba(116, 145, 255, 0.46);
  background: rgba(72, 101, 219, 0.12);
}
.brand-switcher__tab.is-active {
  border-color: rgba(105, 134, 255, 0.62);
  background: linear-gradient(135deg, rgba(48, 79, 205, 0.26), rgba(255, 255, 255, 0.06));
  box-shadow: inset 3px 0 0 #5274ff, 0 18px 50px rgba(14, 36, 112, 0.22);
}
.brand-switcher__tab:nth-child(2).is-active {
  border-color: rgba(65, 182, 121, 0.5);
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.24), rgba(255, 255, 255, 0.055));
  box-shadow: inset 3px 0 0 #2cad6d, 0 18px 50px rgba(10, 78, 45, 0.2);
}
.brand-switcher__index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand-switcher__tab > span:nth-child(2) {
  display: grid;
  gap: 0.25rem;
}
.brand-switcher__tab strong {
  font: 700 0.92rem var(--head);
  letter-spacing: 0.08em;
}
.brand-switcher__tab small {
  color: rgba(228, 235, 250, 0.56);
  font-size: 0.7rem;
}
.brand-switcher__tab i {
  color: #7d98ff;
  font-style: normal;
}
.brand-switcher__note {
  margin-top: auto;
  padding: 1.3rem;
  border-radius: 20px;
  background: rgba(3, 8, 16, 0.32);
}
.brand-switcher__note span,
.partner-ecosystem__cta span {
  color: #7892ff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-switcher__note p {
  margin-top: 0.55rem;
  color: rgba(225, 233, 248, 0.6);
  font-size: 0.78rem;
  line-height: 1.55;
}
.brand-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(15, 27, 49, 0.98), rgba(5, 12, 24, 0.98));
  isolation: isolate;
}
.brand-stage__grid,
.brand-stage__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brand-stage__grid {
  z-index: -1;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 72% 50%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 72% 50%, #000, transparent 70%);
}
.brand-stage__ambient {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 46%, rgba(50, 84, 222, 0.38), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(162, 39, 58, 0.14), transparent 20%);
  transition: background 0.65s ease;
}
[data-active-brand="neetro"] .brand-stage__ambient {
  background:
    radial-gradient(circle at 78% 46%, rgba(30, 151, 91, 0.34), transparent 29%),
    radial-gradient(circle at 92% 14%, rgba(70, 139, 255, 0.12), transparent 21%);
}
.brand-stage__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 2rem;
  align-items: center;
  min-height: 650px;
  padding: clamp(2.2rem, 5vw, 5rem);
}
.brand-stage__panel.is-active {
  animation: brandPanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes brandPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand-stage__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.brand-stage__overline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: rgba(234, 239, 251, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-stage__overline span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5274ff;
  box-shadow: 0 0 0 6px rgba(82, 116, 255, 0.15);
}
[data-brand-panel="neetro"] .brand-stage__overline span {
  background: #2cad6d;
  box-shadow: 0 0 0 6px rgba(44, 173, 109, 0.14);
}
.brand-stage__wordmark {
  margin-bottom: 1.1rem !important;
  color: #7590ff !important;
  font: 800 clamp(1.35rem, 2vw, 2rem) var(--head);
  letter-spacing: 0.2em;
}
.brand-stage__wordmark--green {
  color: #42c981 !important;
}
.brand-stage__copy h3 {
  max-width: 660px;
  color: #fff;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.brand-stage__copy > p:not(.brand-stage__overline):not(.brand-stage__wordmark) {
  max-width: 590px;
  margin-top: 1.35rem;
  color: rgba(226, 233, 247, 0.68);
  font-size: 1rem;
}
.brand-stage__features {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 2.2rem;
  padding: 0;
  list-style: none;
}
.brand-stage__features li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  color: rgba(239, 243, 252, 0.85);
  font-size: 0.82rem;
}
.brand-stage__features span {
  color: #6e8aff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
[data-brand-panel="neetro"] .brand-stage__features span {
  color: #42c981;
}
.brand-stage__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.brand-stage__visual:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 60%;
  height: 12%;
  transform: translateX(-50%) rotateX(72deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.58), transparent 68%);
  filter: blur(12px);
}
.brand-object {
  position: relative;
  z-index: 3;
  animation: brandObjectFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.brand-object .oil-bottle,
.brand-object .vitamin-bottle {
  transform: rotateX(0deg) rotateY(0deg) translateY(0);
}
.brand-object .oil-bottle {
  width: 228px;
  height: 392px;
}
.brand-object .vitamin-bottle {
  width: 220px;
  height: 350px;
}
@keyframes brandObjectFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.brand-orbit {
  position: absolute;
  border: 1px solid rgba(108, 137, 255, 0.34);
  border-radius: 50%;
  pointer-events: none;
}
.brand-orbit--one {
  width: 420px;
  height: 420px;
  transform: rotateX(67deg) rotateZ(8deg);
}
.brand-orbit--two {
  width: 330px;
  height: 330px;
  border-color: rgba(166, 39, 58, 0.25);
  transform: rotateY(68deg) rotateZ(-10deg);
}
.wellness-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.wellness-glow--one {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(37, 168, 101, 0.23), transparent 66%);
}
.wellness-glow--two {
  width: 210px;
  height: 110px;
  right: 6%;
  top: 18%;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, rgba(73, 190, 126, 0.6), rgba(13, 93, 53, 0.14));
  transform: rotate(-24deg);
}
.brand-spec {
  position: absolute;
  z-index: 4;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 13, 25, 0.62);
  color: rgba(242, 246, 255, 0.8);
  font-size: 0.65rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.brand-spec--top { top: 12%; left: 16%; }
.brand-spec--right { top: 42%; right: 1%; }
.brand-spec--bottom { bottom: 14%; left: 10%; }
.partner-ecosystem {
  margin-top: clamp(4rem, 7vw, 7rem);
}
.partner-ecosystem__intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.partner-ecosystem__intro h3 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1;
}
.partner-ecosystem__intro > p:last-child {
  color: rgba(226, 233, 247, 0.62);
  font-size: 0.88rem;
}
.partner-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}
.partner-flow__item {
  position: relative;
  min-height: 280px;
  padding: 1.8rem;
  background: linear-gradient(145deg, rgba(15, 28, 49, 0.98), rgba(7, 15, 28, 0.98));
  transition: background 0.3s ease, transform 0.3s ease;
}
.partner-flow__item:hover {
  background: linear-gradient(145deg, rgba(26, 44, 78, 0.98), rgba(8, 18, 34, 0.98));
}
.partner-flow__item > span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.partner-flow__item i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 2.8rem 0 1.5rem;
  border: 1px solid rgba(103, 133, 255, 0.36);
  border-radius: 16px;
  background: rgba(63, 92, 213, 0.13);
  color: #7d98ff;
  font-style: normal;
  font-size: 1.15rem;
}
.partner-flow__item h4 {
  color: #fff;
  font-size: 1.1rem;
}
.partner-flow__item p {
  margin-top: 0.65rem;
  color: rgba(225, 232, 246, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
}
.partner-ecosystem__cta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}
.partner-ecosystem__cta > div {
  display: grid;
  gap: 0.35rem;
}
.partner-ecosystem__cta strong {
  color: #fff;
  font: 600 clamp(1.1rem, 2vw, 1.5rem) var(--head);
}

@media (max-width: 1100px) {
  .brand-experience__shell {
    grid-template-columns: 1fr;
  }
  .brand-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .brand-switcher__note {
    display: none;
  }
  .brand-stage__panel {
    grid-template-columns: 1fr 0.85fr;
    padding: 3rem;
  }
  .partner-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-ecosystem__intro {
    grid-template-columns: 0.6fr 1.4fr;
  }
  .partner-ecosystem__intro > p:last-child {
    grid-column: 2;
  }
}
@media (max-width: 760px) {
  .brand-experience {
    padding: 5.5rem 0;
  }
  .brand-experience__heading,
  .partner-ecosystem__intro {
    display: block;
  }
  .brand-experience__heading > p,
  .partner-ecosystem__intro > p:last-child {
    margin-top: 1.2rem;
  }
  .brand-experience__heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
  .brand-experience__shell {
    padding: 0.7rem;
    border-radius: 26px;
  }
  .brand-switcher {
    grid-template-columns: 1fr;
  }
  .brand-switcher__tab {
    padding: 1rem;
  }
  .brand-stage {
    min-height: auto;
    border-radius: 20px;
  }
  .brand-stage__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 1.25rem 1.5rem;
  }
  .brand-stage__copy h3 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .brand-stage__visual {
    min-height: 430px;
  }
  .brand-object .oil-bottle {
    width: 190px;
    height: 326px;
  }
  .brand-object .vitamin-bottle {
    width: 185px;
    height: 295px;
  }
  .brand-orbit--one {
    width: 330px;
    height: 330px;
  }
  .brand-orbit--two {
    width: 270px;
    height: 270px;
  }
  .brand-spec--top { top: 10%; left: 2%; }
  .brand-spec--right { top: 43%; right: 0; }
  .brand-spec--bottom { bottom: 10%; left: 2%; }
  .partner-flow {
    grid-template-columns: 1fr;
  }
  .partner-flow__item {
    min-height: 220px;
  }
  .partner-flow__item i {
    margin-top: 1.8rem;
  }
  .partner-ecosystem__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-stage__panel.is-active,
  .brand-object {
    animation: none;
  }
}


/* =========================================================
   Premium Sprint 18 — Contact / Quote conversion experience
   ========================================================= */

.contact-s18 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 10rem) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(41, 72, 200, .34), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(25, 135, 84, .2), transparent 28%),
    linear-gradient(145deg, #071020 0%, #0a1730 48%, #0c1f3f 100%);
}

.contact-s18::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.contact-s18::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  right: -20%;
  top: 12%;
  border: 1px solid rgba(91, 128, 255, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(41, 72, 200, .025),
    0 0 0 160px rgba(41, 72, 200, .018);
}

.contact-s18__ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.contact-s18__ambient span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(1px);
}

.contact-s18__ambient span:nth-child(1) {
  width: 9px;
  height: 9px;
  left: 8%;
  top: 28%;
  background: var(--red);
  box-shadow: 0 0 28px rgba(214, 48, 63, .78);
}

.contact-s18__ambient span:nth-child(2) {
  width: 7px;
  height: 7px;
  right: 12%;
  top: 24%;
  background: #6f91ff;
  box-shadow: 0 0 26px rgba(111, 145, 255, .85);
}

.contact-s18__ambient span:nth-child(3) {
  width: 8px;
  height: 8px;
  left: 44%;
  bottom: 14%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(25, 135, 84, .8);
}

.contact-s18__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.contact-s18__intro {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.contact-s18 .section-kicker {
  margin-bottom: 1.65rem;
}

.contact-s18 h2 {
  max-width: 10ch;
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.contact-s18__lead {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.72) !important;
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.75;
}

.contact-s18__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: .75rem;
  align-items: center;
  margin: 2.8rem 0 2.2rem;
}

.contact-s18__route article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  min-width: 0;
}

.contact-s18__route article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #9fb4ff;
  font-size: .66rem;
  font-weight: 800;
}

.contact-s18__route strong,
.contact-s18__route small {
  display: block;
}

.contact-s18__route strong {
  margin: .05rem 0 .25rem;
  color: #fff;
  font-size: .84rem;
  line-height: 1.2;
}

.contact-s18__route small {
  color: rgba(255,255,255,.48);
  font-size: .67rem;
  line-height: 1.45;
}

.contact-s18__route > i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(111,145,255,.15), rgba(111,145,255,.72), rgba(111,145,255,.15));
}

.contact-s18__channels {
  display: grid;
  gap: .65rem;
}

.contact-s18__channels > a,
.contact-s18__channels > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  min-height: 68px;
  padding: .8rem .95rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  background: rgba(255,255,255,.045);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    transform .35s var(--ease-premium),
    border-color .35s ease,
    background .35s ease;
}

.contact-s18__channels > a:hover,
.contact-s18__channels > a:focus-visible {
  transform: translateX(6px);
  border-color: rgba(111,145,255,.42);
  background: rgba(255,255,255,.075);
}

.contact-s18__channel-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: .8rem;
  background: linear-gradient(145deg, rgba(91,128,255,.28), rgba(41,72,200,.1));
  color: #b9c7ff;
  font-size: .9rem;
  font-weight: 800;
}

.contact-s18__channels small,
.contact-s18__channels strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-s18__channels small {
  margin-bottom: .2rem;
  color: rgba(255,255,255,.45);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-s18__channels strong {
  color: rgba(255,255,255,.94);
  font-size: .86rem;
  font-weight: 650;
}

.contact-s18__privacy {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin: 1.1rem 0 0;
  color: rgba(255,255,255,.48) !important;
  font-size: .72rem;
}

.contact-s18__privacy span {
  color: #37c878;
  font-size: .48rem;
  filter: drop-shadow(0 0 8px rgba(55,200,120,.75));
}

.contact-s18__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    rgba(7,16,32,.62);
  box-shadow:
    0 35px 100px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(26px);
}

.contact-s18__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, rgba(111,145,255,.95), transparent);
}

.contact-s18__panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  top: -130px;
  border-radius: 50%;
  background: rgba(41,72,200,.18);
  filter: blur(16px);
  pointer-events: none;
}

.contact-s18__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1.45rem;
}

.contact-s18__panel-kicker {
  display: block;
  margin-bottom: .5rem;
  color: #8da7ff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-s18__panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.contact-s18__step-label {
  flex: 0 0 auto;
  padding: .5rem .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  font-weight: 750;
}

.contact-s18__progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.7rem;
  padding-top: .2rem;
}

.contact-s18__progress::before,
.contact-s18__progress > span {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18px;
  height: 2px;
  border-radius: 99px;
}

.contact-s18__progress::before {
  background: rgba(255,255,255,.09);
}

.contact-s18__progress > span {
  right: auto;
  width: 0;
  background: linear-gradient(90deg, #6f91ff, #43ca82);
  box-shadow: 0 0 16px rgba(91,128,255,.38);
  transition: width .55s var(--ease-premium);
}

.contact-s18__progress > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.38);
  text-align: center;
  transition: color .3s ease;
}

.contact-s18__progress b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: #0e1a31;
  color: rgba(255,255,255,.52);
  font-size: .68rem;
  transition:
    background .35s ease,
    border-color .35s ease,
    color .35s ease,
    transform .35s var(--ease-premium);
}

.contact-s18__progress small {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.contact-s18__progress > div.is-active,
.contact-s18__progress > div.is-complete {
  color: rgba(255,255,255,.82);
}

.contact-s18__progress > div.is-active b {
  transform: scale(1.08);
  border-color: #6f91ff;
  background: #2948c8;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(41,72,200,.16);
}

.contact-s18__progress > div.is-complete b {
  border-color: rgba(67,202,130,.6);
  background: rgba(25,135,84,.24);
  color: #89efb5;
}

.contact-s18 form {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-s18 [hidden] {
  display: none !important;
}

.contact-s18__step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  animation: contact-s18-enter .48s var(--ease-premium) both;
}

@keyframes contact-s18-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.contact-s18__step legend {
  width: 100%;
  margin-bottom: 1.15rem;
  padding: 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 650;
}

.contact-s18__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.contact-s18__field {
  position: relative;
  display: grid;
  gap: .42rem;
  min-width: 0;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  transform: none !important;
}

.contact-s18__field--wide {
  grid-column: 1 / -1;
}

.contact-s18__field > span,
.contact-s18__choice-group > span {
  color: rgba(255,255,255,.66);
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .025em;
}

.contact-s18 input:not([type="radio"]):not([type="checkbox"]),
.contact-s18 textarea,
.contact-s18 select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .9rem;
  background: rgba(255,255,255,.065);
  color: #fff;
  font: inherit;
  outline: none;
  transition:
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease,
    transform .28s var(--ease-premium);
}

.contact-s18 input:not([type="radio"]):not([type="checkbox"]),
.contact-s18 select {
  height: 54px;
  padding: 0 .95rem;
}

.contact-s18 textarea {
  min-height: 128px;
  padding: .9rem .95rem;
  resize: vertical;
}

.contact-s18 select {
  appearance: none;
  padding-right: 2.7rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.58) 50%),
    linear-gradient(135deg, rgba(255,255,255,.58) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 23px,
    calc(100% - 13px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-s18 select option {
  background: #0e1a31;
  color: #fff;
}

.contact-s18 input::placeholder,
.contact-s18 textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.contact-s18 input:not([type="radio"]):not([type="checkbox"]):focus,
.contact-s18 textarea:focus,
.contact-s18 select:focus {
  border-color: rgba(111,145,255,.8);
  background-color: rgba(255,255,255,.095);
  box-shadow: 0 0 0 4px rgba(91,128,255,.1);
  transform: translateY(-1px);
}

.contact-s18 input:user-invalid,
.contact-s18 textarea:user-invalid,
.contact-s18 select:user-invalid {
  border-color: rgba(255,117,128,.72);
}

.contact-s18__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1rem;
}

.contact-s18__summary > div {
  min-width: 0;
  padding: .8rem .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .85rem;
  background: rgba(255,255,255,.045);
}

.contact-s18__summary small,
.contact-s18__summary strong {
  display: block;
}

.contact-s18__summary small {
  margin-bottom: .28rem;
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-s18__summary strong {
  overflow: hidden;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-s18__choice-group {
  display: grid;
  gap: .55rem;
  margin-top: .85rem;
}

.contact-s18__choice-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.contact-s18__choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 !important;
  border: 0;
  background: transparent !important;
  transform: none !important;
  cursor: pointer;
}

.contact-s18__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-s18__choice span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .55rem .82rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.62);
  font-size: .69rem;
  font-weight: 750;
  transition:
    border-color .25s ease,
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.contact-s18__choice input:checked + span {
  border-color: rgba(111,145,255,.7);
  background: rgba(41,72,200,.32);
  color: #fff;
}

.contact-s18__choice input:focus-visible + span {
  outline: 3px solid rgba(111,145,255,.35);
  outline-offset: 3px;
}

.contact-s18__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  margin-top: 1rem;
  padding: .75rem !important;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .85rem !important;
  background: rgba(255,255,255,.035) !important;
  transform: none !important;
  cursor: pointer;
}

.contact-s18__consent input {
  width: 17px;
  height: 17px;
  margin-top: .1rem;
  accent-color: var(--blue);
}

.contact-s18__consent span {
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  font-weight: 550;
  line-height: 1.5;
}

.contact-s18__actions {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.2rem;
}

.contact-s18__back {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  min-height: 48px;
  padding: .7rem .9rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.66);
  font: 750 .75rem/1 var(--body);
  cursor: pointer;
  transition: color .25s ease, transform .25s ease;
}

.contact-s18__back:hover {
  color: #fff;
  transform: translateX(-3px);
}

.contact-s18__next,
.contact-s18__submit {
  min-width: 180px;
  justify-content: center;
}

.contact-s18 .form-note {
  margin: .85rem 0 0;
  color: rgba(255,255,255,.38);
  font-size: .65rem;
  line-height: 1.5;
}

.contact-s18 .status {
  min-height: 1.4rem;
  margin: .55rem 0 0;
  font-size: .73rem;
  font-weight: 650;
}

.contact-s18__email-ready {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  margin-top: .6rem;
  color: #a9bcff;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-s18__email-ready:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .contact-s18__shell {
    grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
    gap: 2.5rem;
  }

  .contact-s18__route {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .contact-s18__route > i {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-s18 {
    padding: 7rem 0;
  }

  .contact-s18__shell {
    grid-template-columns: 1fr;
  }

  .contact-s18__intro {
    max-width: none;
  }

  .contact-s18 h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 10vw, 5.2rem);
  }

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

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

  .contact-s18__channels > a,
  .contact-s18__channels > div {
    align-content: start;
    min-height: 120px;
  }
}

@media (max-width: 680px) {
  .contact-s18 {
    padding: 5.5rem 0;
  }

  .contact-s18 h2 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .contact-s18__route,
  .contact-s18__channels {
    grid-template-columns: 1fr;
  }

  .contact-s18__channels > a,
  .contact-s18__channels > div {
    min-height: 68px;
  }

  .contact-s18__panel {
    margin-inline: -.2rem;
    padding: 1.2rem;
    border-radius: 1.35rem;
  }

  .contact-s18__panel-head {
    align-items: center;
  }

  .contact-s18__panel h3 {
    font-size: 1.65rem;
  }

  .contact-s18__progress small {
    display: none;
  }

  .contact-s18__progress {
    margin-bottom: 1.25rem;
  }

  .contact-s18__fields,
  .contact-s18__summary {
    grid-template-columns: 1fr;
  }

  .contact-s18__field--wide {
    grid-column: auto;
  }

  .contact-s18__actions {
    justify-content: space-between;
  }

  .contact-s18__next,
  .contact-s18__submit {
    min-width: 0;
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-s18__step {
    animation: none;
  }

  .contact-s18__progress > span,
  .contact-s18__channels > a,
  .contact-s18__back {
    transition: none;
  }
}

/* =========================================================
   SPRINT 19 — LAUNCH CANDIDATE / LEGAL & HANDOFF POLISH
   ========================================================= */
.contact-s18__consent a {
  color: #b9c7ff;
  font-weight: 750;
  text-underline-offset: 3px;
}

.contact-s19__prepared-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  align-items: center;
  margin-top: .7rem;
}

.contact-s18__email-ready--whatsapp {
  color: #8de4b2;
}

.contact-s18__email-ready--whatsapp:hover,
.contact-s18__email-ready--whatsapp:focus-visible {
  color: #c6f6d9;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(8.5rem, 13vw, 11rem) 0 6rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(41,72,200,.12), transparent 30rem),
    linear-gradient(180deg, #f6f8fc, #fff 44%);
}

.legal-shell {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.legal-shell__eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-shell h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.legal-shell__intro {
  max-width: 720px;
  margin: 1.5rem 0 2.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.legal-shell__content {
  display: grid;
  gap: 1rem;
}

.legal-shell__content section {
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid rgba(10,22,45,.1);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 44px rgba(8,26,58,.06);
}

.legal-shell__content h2 {
  margin: 0 0 .7rem;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.legal-shell__content p,
.legal-shell__content li {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.72;
}

.legal-shell__content p:last-child {
  margin-bottom: 0;
}

.legal-shell__content a {
  color: var(--blue);
  font-weight: 700;
}

.legal-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.error-code {
  display: block;
  margin-bottom: .65rem;
  color: var(--blue);
  font: 800 clamp(4.5rem, 18vw, 10rem)/.8 var(--display);
  letter-spacing: -.08em;
  opacity: .14;
}

@media (max-width: 620px) {
  .contact-s19__prepared-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   Sprint 20.1 — Full-bleed pure photo hero slider
   ========================================================= */
.hero-production--photo-slider {
  padding-bottom: 0;
  overflow: hidden;
}
.hero-production--photo-slider .hero-production__mesh {
  background:
    radial-gradient(circle at 82% 10%, rgba(41,72,200,.12), transparent 27%),
    radial-gradient(circle at 16% 35%, rgba(25,135,84,.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fd 100%);
}
.hero-production--photo-slider .hero-production__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
  min-height: auto;
}
.hero-production--photo-slider .hero-production__copy {
  max-width: 880px;
  padding: 24px 0 0;
}
.hero-production--photo-slider .hero-production__title {
  max-width: 920px;
}
.hero-production--photo-slider .hero-production__facts {
  max-width: 760px;
}
.hero-production__stage--slider {
  position: relative;
  width: 100vw;
  height: clamp(620px, 72svh, 900px);
  min-height: 620px;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: #071426 !important;
  box-shadow: none;
  transform: none !important;
}
.hero-production__stage--slider::before,
.hero-production__stage--slider::after {
  display: none !important;
}
.hero-production__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.015);
  transition: transform 7.5s ease;
  filter: saturate(1.04) contrast(1.025);
}
.hero-slide.is-active .hero-slide__image {
  transform: scale(1.075);
}
.hero-slider__controls {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(20px, 3vw, 34px);
  z-index: 4;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}
.hero-slider__arrow,
.hero-slider__dots {
  pointer-events: auto;
}
.hero-slider__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(5,14,31,.34);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.hero-slider__arrow:hover {
  transform: translateY(-2px);
  background: rgba(5,14,31,.58);
  border-color: rgba(255,255,255,.62);
}
.hero-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-slider__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  transition: width .3s ease, background .3s ease;
}
.hero-slider__dots button.is-active {
  width: 32px;
  background: #fff;
}
.hero-production--photo-slider .hero-production__bottomline {
  margin-top: 0;
  min-height: 52px;
}
@media (max-width: 900px) {
  .hero-production--photo-slider .hero-production__grid {
    gap: 38px;
  }
  .hero-production__stage--slider {
    height: 68svh;
    min-height: 560px;
  }
}
@media (max-width: 620px) {
  .hero-production--photo-slider {
    padding-bottom: 0;
  }
  .hero-production--photo-slider .hero-production__copy {
    padding-top: 12px;
  }
  .hero-production__stage--slider {
    height: 62svh;
    min-height: 460px;
  }
  .hero-slider__controls {
    grid-template-columns: 42px 1fr 42px;
    left: 14px;
    right: 14px;
    bottom: 18px;
    gap: 12px;
  }
  .hero-slider__arrow {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }
  .hero-slider__dots {
    gap: 8px;
  }
  .hero-slider__dots button {
    width: 8px;
    height: 8px;
  }
  .hero-slider__dots button.is-active {
    width: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide__image,
  .hero-slider__arrow,
  .hero-slider__dots button {
    transition: none !important;
  }
  .hero-slide__image,
  .hero-slide.is-active .hero-slide__image {
    transform: none !important;
  }
}


/* =========================================================
   Sprint 20.2 — Unified hero: content over full-bleed slideshow
   ========================================================= */
.hero-production--unified {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #061127;
  color: #fff;
}
.hero-production--unified .hero-production__stage--slider {
  width: 100%;
  height: max(760px, 100svh);
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}
.hero-production--unified .hero-production__slider {
  z-index: 1;
}
.hero-production--unified .hero-slide__image {
  filter: saturate(1.02) contrast(1.05) brightness(.88);
}
.hero-production__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,10,24,.88) 0%, rgba(3,10,24,.72) 34%, rgba(3,10,24,.28) 64%, rgba(3,10,24,.14) 100%),
    linear-gradient(180deg, rgba(3,9,20,.42) 0%, rgba(3,9,20,.06) 38%, rgba(3,9,20,.5) 100%);
}
.hero-production__overlay {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: max(760px, 100svh);
  padding-top: 118px;
  padding-bottom: 128px;
}
.hero-production--unified .hero-production__copy {
  width: min(760px, 68vw);
  max-width: none;
  padding: 0;
  color: #fff;
  text-shadow: 0 5px 30px rgba(0,0,0,.18);
}
.hero-production--unified .hero-production__kicker {
  align-items: center;
  margin-bottom: 24px;
}
.hero-production--unified .eyebrow,
.hero-production--unified .hero-production__pretitle {
  color: rgba(255,255,255,.82);
}
.hero-production--unified .hero-production__pretitle {
  margin-bottom: 18px;
}
.hero-production--unified .hero-production__title {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(4.6rem, 7.4vw, 8.2rem);
  line-height: .86;
  letter-spacing: -.075em;
}
.hero-production--unified .hero-production__title > span {
  display: block;
}
.hero-production--unified .hero-production__title > span:nth-child(2) {
  color: #c8d5ff;
}
.hero-production--unified .lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
}
.hero-production--unified .btn-light {
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(12px);
}
.hero-production--unified .btn-light:hover,
.hero-production--unified .btn-light:focus-visible {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.2);
}
.hero-production--unified .listen-btn {
  border-color: rgba(255,255,255,.28);
  background: rgba(3,10,24,.3);
  color: #fff;
  backdrop-filter: blur(12px);
}
.hero-production--unified .hero-production__facts {
  width: min(720px, 100%);
  max-width: none;
  margin-top: 44px;
  border-top-color: rgba(255,255,255,.24);
}
.hero-production--unified .hero-production__facts article {
  border-right-color: rgba(255,255,255,.18);
}
.hero-production--unified .hero-production__facts article > span {
  color: #ff7a82;
}
.hero-production--unified .hero-production__facts b {
  color: #fff;
}
.hero-production--unified .hero-production__facts small {
  color: rgba(255,255,255,.64);
}
.hero-production--unified .hero-slider__controls {
  left: auto;
  right: clamp(24px, 4vw, 64px);
  bottom: 76px;
  width: auto;
  grid-template-columns: 46px auto 46px;
  gap: 14px;
}
.hero-production--unified .hero-production__bottomline {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: min(calc(100% - 48px), 1280px);
  min-height: 0;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255,255,255,.62);
}
.hero-production--unified .hero-production__bottomline a {
  color: rgba(255,255,255,.74);
}
.hero-production--unified .hero-production__bottomline i {
  background: rgba(255,255,255,.55);
}
.hero-production--unified .hero-production__bottomline i::after {
  border-color: rgba(255,255,255,.72);
}
.home-unified-hero .header:not(.scrolled) {
  color: #fff;
}
.home-unified-hero .header:not(.scrolled) .navlinks a {
  color: rgba(255,255,255,.76);
}
.home-unified-hero .header:not(.scrolled) .navlinks a:hover,
.home-unified-hero .header:not(.scrolled) .navlinks a.active {
  color: #fff;
}
.home-unified-hero .header:not(.scrolled) .menu span {
  background: #fff;
}
.home-unified-hero .header:not(.scrolled) .nav-cta {
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
@media (max-width: 900px) {
  .hero-production--unified .hero-production__stage--slider,
  .hero-production--unified .hero-production__overlay {
    height: auto;
    min-height: max(720px, 100svh);
  }
  .hero-production--unified .hero-production__copy {
    width: min(760px, 88vw);
  }
  .hero-production--unified .hero-production__title {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(3,10,24,.88) 0%, rgba(3,10,24,.62) 58%, rgba(3,10,24,.3) 100%),
      linear-gradient(180deg, rgba(3,9,20,.42) 0%, rgba(3,9,20,.08) 38%, rgba(3,9,20,.58) 100%);
  }
}
@media (max-width: 620px) {
  .hero-production--unified .hero-production__stage--slider,
  .hero-production--unified .hero-production__overlay {
    min-height: max(760px, 100svh);
  }
  .hero-production__overlay {
    align-items: flex-start;
    padding-top: 118px;
    padding-bottom: 150px;
  }
  .hero-production--unified .hero-production__copy {
    width: 100%;
  }
  .hero-production--unified .hero-production__kicker {
    align-items: flex-start;
  }
  .hero-production--unified .hero-production__title {
    font-size: clamp(3.75rem, 17vw, 5.1rem);
  }
  .hero-production--unified .lead {
    font-size: .98rem;
    line-height: 1.65;
  }
  .hero-production--unified .actions {
    gap: 10px;
  }
  .hero-production--unified .actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-production--unified .hero-production__facts {
    margin-top: 28px;
  }
  .hero-production--unified .hero-production__facts article,
  .hero-production--unified .hero-production__facts article:nth-child(2),
  .hero-production--unified .hero-production__facts article:last-child {
    border-bottom-color: rgba(255,255,255,.16);
  }
  .hero-production--unified .hero-slider__controls {
    left: 16px;
    right: 16px;
    bottom: 64px;
    grid-template-columns: 42px 1fr 42px;
    width: auto;
  }
  .hero-production--unified .hero-production__bottomline {
    display: none;
  }
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(3,10,24,.82), rgba(3,10,24,.58)),
      linear-gradient(180deg, rgba(3,9,20,.48) 0%, rgba(3,9,20,.16) 34%, rgba(3,9,20,.7) 100%);
  }
}


/* =========================================================
   Sprint 20.3 — Client layout refinement
   ========================================================= */

/* Use the standard browser cursor only. */
.ui-cursor,
.ui-cursor__dot {
  display: none !important;
}

/* Global spacing: preserve hierarchy without oversized gaps. */
.section {
  padding: clamp(4.75rem, 7vw, 6.5rem) 0;
}
.trust {
  padding: 2.35rem 0 2.75rem;
}
.heading {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}
.section-kicker {
  margin-bottom: .85rem;
}
.network-section[data-network-experience] {
  min-height: auto;
  padding: clamp(5.75rem, 8vw, 7.25rem) 0;
}
.industries-section,
.why-section,
.supply-chain,
.product-universe,
.about-v3 {
  padding-top: clamp(4.75rem, 7vw, 6.25rem);
  padding-bottom: clamp(4.75rem, 7vw, 6.25rem);
}

/* Header / Sky Source logo. */
.header .brand {
  gap: .92rem;
}
.header .brand b {
  font-size: 1.16rem;
  letter-spacing: .09em;
}
.header .brand small {
  margin-top: .38rem;
  font-size: .61rem;
}
.header .bars {
  grid-template-columns: repeat(4, 6px);
  gap: 3px;
  height: 31px;
}
.home-unified-hero .header:not(.scrolled) .brand small {
  color: rgba(255,255,255,.68);
}

/* Unified hero readability and listen alignment. */
.hero-production__shade {
  background:
    linear-gradient(90deg, rgba(2,8,20,.96) 0%, rgba(2,8,20,.84) 36%, rgba(2,8,20,.42) 68%, rgba(2,8,20,.2) 100%),
    linear-gradient(180deg, rgba(2,7,17,.46) 0%, rgba(2,7,17,.1) 37%, rgba(2,7,17,.62) 100%);
}
.hero-production--unified .hero-production__copy {
  width: min(790px, 72vw);
}
.hero-production--unified .hero-production__kicker {
  display: block;
  margin-bottom: 18px;
}
.hero-production--unified .hero-production__title {
  color: #fff;
  text-shadow: 0 5px 32px rgba(0,0,0,.72), 0 2px 8px rgba(0,0,0,.82);
}
.hero-production--unified .hero-production__title > span:first-child {
  color: #ffffff;
}
.hero-production--unified .hero-production__title > span:nth-child(2) {
  color: #a9c2ff;
  text-shadow: 0 5px 34px rgba(0,0,0,.78), 0 0 26px rgba(69,104,221,.24);
}
.hero-production--unified .hero-production__pretitle,
.hero-production--unified .lead,
.hero-production--unified .eyebrow {
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.hero-production__listen-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: -8px 0 20px;
}
.hero-production--unified .hero-production__listen-row .listen-btn {
  min-height: 42px;
  padding: .64rem .92rem;
  border-color: rgba(255,255,255,.38);
  background: rgba(4,12,28,.5);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.hero-production--unified .actions {
  margin-top: 0;
}

/* About: pull the editorial content upward and remove excess gaps. */
.about-v3__header {
  padding-bottom: clamp(1.8rem, 3vw, 2.65rem);
}
.about-v3__kicker {
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem);
}
.about-v3__heading {
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-v3__layout {
  gap: clamp(2rem, 4.5vw, 4.5rem);
  padding-top: clamp(2rem, 3.5vw, 3rem);
}
.about-v3__story {
  padding-top: 0;
}
.about-v3__lead {
  margin-bottom: 1.45rem;
}
.about-v3__principles article {
  padding: 1.05rem 0;
}
.about-v3__link {
  margin-top: 1.2rem;
}
.about-v3__panel {
  padding: clamp(1.2rem, 1.8vw, 1.65rem);
}
.about-v3__panel-head {
  padding-bottom: 1rem;
}
.about-v3__pipeline {
  padding: clamp(1.55rem, 2.7vw, 2.35rem) 0 clamp(1.45rem, 2.5vw, 2.1rem);
}
.about-v3__pipeline::before {
  top: calc(clamp(1.55rem, 2.7vw, 2.35rem) + 43px);
}
.about-v3__stage > span {
  margin-bottom: .55rem;
}
.about-v3__stage > i {
  margin-bottom: .9rem;
}
.about-v3__facts div {
  padding: .8rem .9rem;
}

/* Products: six compact categories, 3 columns × 2 rows. */
.product-heading {
  margin-bottom: 2.25rem;
}
.product-grid--visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  perspective: none;
}
.product-grid--visual .product-card--photo {
  display: block;
  min-height: 300px;
  border-radius: 1.15rem;
  transform: none !important;
  box-shadow: 0 16px 38px rgba(12,28,52,.1);
  will-change: auto;
}
.product-grid--visual .product-card--photo > img,
.product-grid--visual .product-card--photo:hover > img,
.product-grid--visual .product-card--photo:focus-visible > img,
.product-grid--visual .product-card--photo.is-interacting > img {
  transform: scale(1.035) !important;
}
.product-grid--visual .product-card--photo::before,
.product-card__glow,
.product-card__frame {
  display: none;
}
.product-card--photo .product-card__shade {
  background: linear-gradient(180deg, rgba(3,13,27,.04) 18%, rgba(3,13,27,.18) 44%, rgba(3,13,27,.92) 100%);
}
.product-card--photo .product-card__copy,
.product-card--photo:hover .product-card__copy,
.product-card--photo:focus-visible .product-card__copy {
  min-height: 100%;
  padding: 1.35rem;
  transform: none !important;
  justify-content: flex-end;
}
.product-card--photo .product-card__copy > span {
  width: fit-content;
  min-width: 2.3rem;
  height: 1.85rem;
  margin-bottom: auto;
  font-size: .6rem;
}
.product-card--photo h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.05;
}
.product-card--photo p {
  margin-top: .5rem;
  font-size: .8rem;
  line-height: 1.45;
}
.product-card--photo .product-card__copy a {
  margin-top: .7rem;
  font-size: .74rem;
}

/* Brands: reduce empty vertical space and keep copy toward the top. */
.brand-experience {
  padding: clamp(4.75rem, 7vw, 6.5rem) 0;
}
.brand-experience__heading {
  align-items: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.7rem);
}
.brand-experience__heading h2 {
  font-size: clamp(3rem, 5.5vw, 5.7rem);
}
.brand-experience__shell {
  padding: .8rem;
  border-radius: 28px;
}
.brand-switcher__tab {
  padding: 1rem;
}
.brand-switcher__note {
  padding: 1rem;
}
.brand-stage,
.brand-stage__panel {
  min-height: 550px;
}
.brand-stage__panel {
  align-items: start;
  gap: 1.4rem;
  padding: clamp(2rem, 3.5vw, 3.4rem);
}
.brand-stage__copy {
  padding-top: .15rem;
}
.brand-stage__copy h3 {
  font-size: clamp(2.55rem, 4vw, 4.35rem);
}
.brand-stage__copy > p:not(.brand-stage__overline):not(.brand-stage__wordmark) {
  margin-top: 1rem;
}
.brand-stage__features {
  gap: .62rem;
  margin: 1.35rem 0 1.55rem;
}
.brand-stage__visual {
  min-height: 455px;
  margin-top: -8px;
}
.partner-ecosystem {
  margin-top: 1.4rem;
}

/* Supply-chain cards remain fully legible at all stages. */
.journey-heading {
  margin-bottom: 2rem;
}
.journey-shell {
  gap: .8rem;
}
.journey-step,
.journey-step.is-active {
  min-height: 145px;
  padding: 1.55rem 1.7rem;
  opacity: 1;
  transform: none;
  background: #fff;
}
.journey-step:not(.is-active) {
  border-color: #e2e7f0;
  box-shadow: 0 8px 26px rgba(20,35,65,.04);
}
.journey-step h3 {
  font-size: 1.42rem;
}

/* Why Sky Source: real related photography instead of abstract sketches. */
.why-heading {
  margin-bottom: 2rem;
}
.why-panels {
  gap: 1rem;
}
.why-panels article {
  min-height: 300px;
  border-radius: 1.4rem;
}
.why-panels article > div:last-child {
  padding: clamp(2rem, 3.5vw, 2.7rem);
}
.why-panels h3 {
  font-size: clamp(1.85rem, 2.7vw, 2.9rem);
}
.why-visual,
.why-visual--photo {
  min-height: 300px;
  background: #0b172b;
}
.why-visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
  transition: transform .7s ease;
}
.why-visual--photo span {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,18,39,.08), rgba(7,18,39,.42));
}
.why-panels article:hover .why-visual--photo img {
  transform: scale(1.045);
}

@media (max-width: 1050px) {
  .product-grid--visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-stage,
  .brand-stage__panel {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .section,
  .about-v3,
  .product-universe,
  .brand-experience,
  .supply-chain,
  .industries-section,
  .why-section {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }
  .header .brand b {
    font-size: 1.02rem;
  }
  .header .brand small {
    font-size: .54rem;
  }
  .header .bars {
    grid-template-columns: repeat(4, 5px);
    height: 27px;
  }
  .hero-production--unified .hero-production__copy {
    width: 100%;
  }
  .hero-production__listen-row {
    margin-top: -4px;
  }
  .about-v3__layout {
    gap: 2rem;
    padding-top: 2rem;
  }
  .about-v3__pipeline {
    padding: 1.5rem 0;
  }
  .product-grid--visual {
    grid-template-columns: 1fr;
  }
  .product-grid--visual .product-card--photo {
    min-height: 270px;
  }
  .brand-stage,
  .brand-stage__panel {
    min-height: auto;
  }
  .brand-stage__panel {
    padding: 1.55rem;
  }
  .brand-stage__visual {
    min-height: 390px;
    margin-top: 0;
  }
  .journey-shell {
    gap: .7rem;
  }
  .journey-step,
  .journey-step.is-active {
    min-height: auto;
    padding: 1.25rem;
  }
  .why-panels article,
  .why-panels article:nth-child(even) {
    min-height: 0;
  }
  .why-visual,
  .why-visual--photo {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-visual--photo img {
    transition: none !important;
  }
}


/* =========================================================
   Sprint 20.4 — Navigation alignment and green accents
   ========================================================= */
main > section[id],
.brand-showcase article[id] {
  scroll-margin-top: 62px;
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 14px 32px rgba(25, 135, 84, 0.25);
}

.btn-green:hover,
.btn-green:focus-visible {
  background: #126f45;
  border-color: #126f45;
  box-shadow: 0 18px 38px rgba(25, 135, 84, 0.3);
}

.navlinks a::after {
  background: linear-gradient(90deg, var(--green), #2da76a);
}

.about-v3 .eyebrow,
.product-universe .eyebrow,
.why-section .eyebrow,
.contact-s18__panel-kicker,
.about-v3__principles article > span,
.product-card__copy > span {
  color: var(--green);
}

.about-v3__link,
.service-grid article:nth-child(2n) > a,
.product-card:nth-child(3n + 2) .product-card__copy > a {
  color: var(--green);
}

.hero-production__facts article:nth-child(2) > span,
.contact-s18__privacy > span,
.contact-s18__route article:nth-of-type(2) > span {
  color: #43c985;
}

.contact-s18__progress > span {
  background: linear-gradient(90deg, var(--green), #43c985);
}

.contact-s18__progress .is-active b,
.contact-s18__progress .is-complete b {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.contact-s18__choice input:checked + span {
  border-color: rgba(67, 201, 133, 0.72);
  background: rgba(25, 135, 84, 0.32);
}

.contact-s18__consent input {
  accent-color: var(--green);
}

@media (max-width: 900px) {
  main > section[id],
  .brand-showcase article[id] {
    scroll-margin-top: 54px;
  }
}


/* =========================================================
   Sprint 20.5 — Precise fixed-header anchor alignment
   JavaScript aligns the first content container directly below
   the settled header. Historical section scroll margins are reset.
   ========================================================= */
html {
  scroll-padding-top: 0;
}
main > section[id],
.brand-showcase article[id] {
  scroll-margin-top: 0;
}

/* =========================================================
   Sprint 20.8 — Client palette & hero visibility refinement
   ========================================================= */

/* Larger header identity while preserving the settled navigation height. */
.header .brand {
  gap: 1.05rem;
}
.header .brand b {
  font-size: 1.43rem;
  line-height: .95;
  letter-spacing: .085em;
}
.header .brand small {
  margin-top: .34rem;
  font-size: .69rem;
  line-height: 1;
  letter-spacing: .13em;
}
.header .bars {
  grid-template-columns: repeat(4, 7px);
  gap: 3px;
  height: 39px;
}

/* Let the hero photography do more of the visual work. */
.hero-production--unified .hero-slide__image {
  filter: saturate(1.08) contrast(1.035) brightness(1.04);
}
.hero-production__shade {
  background:
    linear-gradient(90deg, rgba(2,8,20,.76) 0%, rgba(2,8,20,.56) 36%, rgba(2,8,20,.24) 68%, rgba(2,8,20,.08) 100%),
    linear-gradient(180deg, rgba(2,7,17,.22) 0%, rgba(2,7,17,.035) 38%, rgba(2,7,17,.38) 100%);
}
.hero-production--unified .hero-production__title {
  text-shadow: 0 4px 22px rgba(0,0,0,.68), 0 1px 5px rgba(0,0,0,.82);
}
.hero-production--unified .hero-production__title > span:nth-child(2) {
  color: #dce6ff;
}

/* Use the four client palette colors as recognizable section identities. */
.brand-experience {
  background:
    radial-gradient(circle at 12% 12%, rgba(201,45,59,.22), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(25,135,84,.16), transparent 30%),
    linear-gradient(145deg, var(--brown) 0%, #6a3f24 54%, #57331f 100%);
}
.brand-experience::before {
  opacity: .52;
}
.brand-experience__heading .eyebrow,
.brand-experience__heading h2 span {
  color: #ffe0c8;
}
.brand-experience__shell {
  border-color: rgba(255,255,255,.16);
  background: rgba(58,29,15,.28);
}

.network-section[data-network-experience] {
  background:
    radial-gradient(circle at 76% 28%, rgba(201,45,59,.28), transparent 31%),
    radial-gradient(circle at 12% 78%, rgba(25,135,84,.18), transparent 28%),
    linear-gradient(145deg, var(--blue) 0%, #2441b4 56%, #1f3a9f 100%);
}
.network-aurora--one {
  background: var(--red);
  opacity: .18;
}
.network-aurora--two {
  background: var(--green);
  opacity: .16;
}

.contact-s18 {
  background:
    radial-gradient(circle at 12% 12%, rgba(201,45,59,.24), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(123,75,42,.28), transparent 30%),
    linear-gradient(145deg, var(--green) 0%, #146f48 52%, #0f5d3d 100%);
}
.contact-s18::after {
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 0 0 80px rgba(255,255,255,.018),
    0 0 0 160px rgba(255,255,255,.012);
}
.contact-s18__panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055)),
    rgba(10,55,38,.68);
}
.contact-s18__panel::before {
  background: linear-gradient(90deg, var(--red), var(--brown), transparent);
}
.contact-s18__panel::after {
  background: rgba(201,45,59,.15);
}

/* Four-color micro accents across light sections. */
.trust-grid article:nth-child(4n + 1) > span,
.service-grid article:nth-child(4n + 1) i,
.product-grid--visual .product-card--photo:nth-child(4n + 1) .product-card__copy > span {
  color: var(--blue);
}
.trust-grid article:nth-child(4n + 2) > span,
.service-grid article:nth-child(4n + 2) i,
.product-grid--visual .product-card--photo:nth-child(4n + 2) .product-card__copy > span {
  color: var(--red);
}
.trust-grid article:nth-child(4n + 3) > span,
.service-grid article:nth-child(4n + 3) i,
.product-grid--visual .product-card--photo:nth-child(4n + 3) .product-card__copy > span {
  color: var(--green);
}
.trust-grid article:nth-child(4n) > span,
.service-grid article:nth-child(4n) i,
.product-grid--visual .product-card--photo:nth-child(4n) .product-card__copy > span {
  color: var(--brown);
}
.service-grid article:nth-child(4n + 1) i { background: rgba(41,72,200,.10); }
.service-grid article:nth-child(4n + 2) i { background: rgba(201,45,59,.10); }
.service-grid article:nth-child(4n + 3) i { background: rgba(25,135,84,.10); }
.service-grid article:nth-child(4n) i { background: rgba(123,75,42,.11); }

.contact-s18__channels > :nth-child(4n + 1) .contact-s18__channel-icon {
  color: #fff;
  background: rgba(41,72,200,.72);
}
.contact-s18__channels > :nth-child(4n + 2) .contact-s18__channel-icon {
  color: #fff;
  background: rgba(201,45,59,.74);
}
.contact-s18__channels > :nth-child(4n + 3) .contact-s18__channel-icon {
  color: #fff;
  background: rgba(25,135,84,.9);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.contact-s18__channels > :nth-child(4n) .contact-s18__channel-icon {
  color: #fff;
  background: rgba(123,75,42,.82);
}

@media (max-width: 1120px) {
  .header .brand b { font-size: 1.28rem; }
  .header .brand small { font-size: .62rem; }
  .header .bars {
    grid-template-columns: repeat(4, 6px);
    height: 35px;
  }
}

@media (max-width: 900px) {
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(2,8,20,.74) 0%, rgba(2,8,20,.52) 62%, rgba(2,8,20,.24) 100%),
      linear-gradient(180deg, rgba(2,7,17,.24) 0%, rgba(2,7,17,.04) 38%, rgba(2,7,17,.42) 100%);
  }
}

@media (max-width: 620px) {
  .header .brand {
    gap: .78rem;
  }
  .header .brand b {
    font-size: 1.15rem;
  }
  .header .brand small {
    margin-top: .28rem;
    font-size: .56rem;
  }
  .header .bars {
    grid-template-columns: repeat(4, 5px);
    gap: 2px;
    height: 31px;
  }
  .hero-production--unified .hero-slide__image {
    filter: saturate(1.07) contrast(1.035) brightness(1.02);
  }
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(2,8,20,.72), rgba(2,8,20,.46)),
      linear-gradient(180deg, rgba(2,7,17,.28) 0%, rgba(2,7,17,.08) 34%, rgba(2,7,17,.48) 100%);
  }
}

/* =========================================================
   Sprint 20.9 — Client corrections
   ========================================================= */

/* Product Universe card numbers remain white over photography. */
.product-grid--visual .product-card--photo .product-card__copy > span {
  color: #fff !important;
}

/* Restore the Global Network section to the previous dark-blue treatment. */
.network-section[data-network-experience] {
  background:
    radial-gradient(circle at 74% 34%, rgba(55, 92, 214, 0.28), transparent 29%),
    radial-gradient(circle at 92% 78%, rgba(47, 189, 120, 0.11), transparent 25%),
    linear-gradient(145deg, #050a13 0%, #0a1428 48%, #071631 100%);
}
.network-aurora--one {
  background: #2948c8;
  opacity: 0.2;
}
.network-aurora--two {
  background: #198754;
  opacity: 0.11;
}

/* =========================================================
   Final hosting polish — Sprint 21
   ========================================================= */

/* Hero headline: keep both lines equally legible over every slide. */
.hero-production--unified .hero-production__title > span:first-child,
.hero-production--unified .hero-production__title > span:nth-child(2) {
  color: #fff;
  -webkit-text-stroke: .35px rgba(3, 10, 24, .28);
  text-shadow:
    0 7px 34px rgba(0, 0, 0, .86),
    0 2px 8px rgba(0, 0, 0, .9),
    0 0 2px rgba(255, 255, 255, .18);
}
.hero-production--unified .hero-production__title > span:nth-child(2) {
  position: relative;
  width: max-content;
  max-width: 100%;
}
.hero-production--unified .hero-production__title > span:nth-child(2)::after {
  content: "";
  display: block;
  width: min(132px, 28%);
  height: 4px;
  margin-top: .16em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  box-shadow: 0 5px 18px rgba(0,0,0,.3);
}

/* Keep the photography bright while protecting text contrast locally. */
.hero-production--unified .hero-slide__image {
  filter: saturate(1.08) contrast(1.04) brightness(1.055);
}
.hero-production__shade {
  background:
    linear-gradient(90deg, rgba(2,8,20,.72) 0%, rgba(2,8,20,.51) 34%, rgba(2,8,20,.20) 68%, rgba(2,8,20,.06) 100%),
    linear-gradient(180deg, rgba(2,7,17,.18) 0%, rgba(2,7,17,.025) 38%, rgba(2,7,17,.34) 100%);
}

/* A cleaner, more deliberate navigation state. */
.navlinks a::after {
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.header.scrolled {
  border-bottom: 1px solid rgba(19, 23, 34, .06);
}
.header.scrolled .nav-cta {
  box-shadow: 0 10px 26px rgba(25, 135, 84, .18);
}

/* Consistent editorial rhythm across all sections. */
.heading > div > h2,
.about-v3__heading h2,
.network-copy h2,
.contact-s18__intro h2 {
  line-height: 1.02;
}
.heading > p {
  max-width: 540px;
  line-height: 1.7;
}
.section-kicker .eyebrow {
  letter-spacing: .13em;
}

/* Light cards get a unified production finish without becoming heavy. */
.service-grid article,
.trust-grid article,
.journey-step,
.why-panels article,
.industry-card {
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}
.service-grid article:hover,
.trust-grid article:hover,
.why-panels article:hover {
  transform: translateY(-4px);
}
.service-grid article:hover,
.why-panels article:hover {
  box-shadow: 0 24px 60px rgba(19, 23, 34, .09);
}

/* Product cards: keep the compact 3 × 2 layout but improve separation. */
.product-grid--visual .product-card--photo {
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 42px rgba(14, 25, 48, .11);
}
.product-grid--visual .product-card--photo:hover {
  box-shadow: 0 28px 64px rgba(14, 25, 48, .17);
}
.product-card--photo .product-card__copy > span {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.62);
}

/* Journey cards all remain fully visible; active state is indicated by detail, not opacity. */
.journey-step,
.journey-step:not(.is-active),
.journey-step.is-active {
  opacity: 1 !important;
}
.journey-step.is-active {
  border-color: rgba(41,72,200,.28);
  box-shadow: 0 18px 46px rgba(41,72,200,.08);
}

/* Make photographic proof points feel consistent. */
.why-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Stronger keyboard affordances on final production build. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(41,72,200,.34);
  outline-offset: 3px;
}
.brand-experience a:focus-visible,
.brand-experience button:focus-visible,
.network-section a:focus-visible,
.network-section button:focus-visible,
.contact-s18 a:focus-visible,
.contact-s18 button:focus-visible {
  outline-color: rgba(255,255,255,.68);
}

/* Footer separation and mobile readability. */
footer {
  border-top: 1px solid rgba(19, 23, 34, .07);
}
.foot-bottom {
  gap: 1rem 2rem;
}

@media (max-width: 900px) {
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(2,8,20,.72) 0%, rgba(2,8,20,.49) 62%, rgba(2,8,20,.20) 100%),
      linear-gradient(180deg, rgba(2,7,17,.22) 0%, rgba(2,7,17,.04) 38%, rgba(2,7,17,.39) 100%);
  }
}

@media (max-width: 620px) {
  .hero-production--unified .hero-production__title {
    line-height: .9;
    letter-spacing: -.065em;
  }
  .hero-production--unified .hero-production__title > span:nth-child(2)::after {
    width: 92px;
    height: 3px;
    margin-top: .2em;
  }
  .hero-production__shade {
    background:
      linear-gradient(90deg, rgba(2,8,20,.68), rgba(2,8,20,.43)),
      linear-gradient(180deg, rgba(2,7,17,.25) 0%, rgba(2,7,17,.06) 34%, rgba(2,7,17,.45) 100%);
  }
  .foot-bottom {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-grid article,
  .trust-grid article,
  .journey-step,
  .why-panels article,
  .industry-card,
  .product-grid--visual .product-card--photo {
    transition: none !important;
    transform: none !important;
  }
}


/* =========================================================
   Final hosting hotfix — hero capability visibility
   ========================================================= */
/* The hero must be tall enough for the capability row on shorter laptop
   viewports; the stage grows with content instead of clipping the cards. */
.hero-production--unified .hero-production__stage--slider {
  height: max(840px, 100svh);
  min-height: 840px;
}
.hero-production--unified .hero-production__overlay {
  min-height: max(840px, 100svh);
  padding-top: 112px;
  padding-bottom: 126px;
}

/* Give the three capability facts a restrained glass surface so both the
   headings and supporting lines remain readable on every slideshow image. */
.hero-production--unified .hero-production__facts {
  width: min(760px, 100%);
  margin-top: 34px;
  padding: 0 18px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;
  background: rgba(3,10,24,.48);
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-production--unified .hero-production__facts article {
  min-width: 0;
  padding-top: 16px;
  padding-bottom: 2px;
}
.hero-production--unified .hero-production__facts b {
  color: #fff;
  font-size: .9rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.48);
}
.hero-production--unified .hero-production__facts small {
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  line-height: 1.4;
  text-shadow: 0 2px 9px rgba(0,0,0,.5);
}

/* The requested brand slogan has been removed; keep only the scroll cue. */
.hero-production--unified .hero-production__bottomline--scroll-only {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero-production--unified .hero-production__stage--slider,
  .hero-production--unified .hero-production__overlay {
    min-height: max(860px, 100svh);
  }
  .hero-production--unified .hero-production__facts {
    margin-top: 30px;
  }
}

@media (max-width: 620px) {
  .hero-production--unified .hero-production__stage--slider,
  .hero-production--unified .hero-production__overlay {
    min-height: max(980px, 100svh);
  }
  .hero-production__overlay {
    padding-top: 112px;
    padding-bottom: 118px;
  }
  .hero-production--unified .hero-production__facts {
    padding: 0 15px 8px;
    border-radius: 16px;
  }
  .hero-production--unified .hero-production__facts article,
  .hero-production--unified .hero-production__facts article:nth-child(2),
  .hero-production--unified .hero-production__facts article:last-child {
    padding: 12px 0;
  }
}
