:root {
  --night-950: #081735;
  --night-900: #0d2346;
  --night-850: #12305a;
  --night-800: #193d70;
  --gold-200: #f2d98a;
  --gold-300: #e8c04f;
  --gold-400: #d4a838;
  --gold-500: #c49a2a;
  --gold-700: #866018;
  --ivory-50: #fefefe;
  --ivory-100: #f9f7f2;
  --ivory-200: #f0ece3;
  --muted: rgba(240, 236, 227, 0.58);
  --faint: rgba(240, 236, 227, 0.34);
  --line: rgba(196, 154, 42, 0.18);
  --line-strong: rgba(196, 154, 42, 0.42);
  --panel: rgba(13, 35, 70, 0.5);
  --container: 1180px;
  --foil-glow: 0.24;
  --foil-glow-soft: 14px;
  --foil-glow-strong: 30px;
  --foil-alpha: 0.22;
  --foil-alpha-soft: 0.12;
  --foil-brightness: 1.04;
  --foil-saturation: 1.06;
  --foil-drift: 0px;
  --foil-drift-reverse: 0px;
  --map-layer-size: 100%;
  --map-layer-shift-x: 0%;
  --map-layer-shift-y: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory-50);
  background:
    linear-gradient(180deg, #102a53, #0b1d3e 54%, var(--night-950)),
    var(--night-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(196, 154, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(196, 154, 42, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 15, 35, 0.66), transparent 28%, transparent 72%, rgba(4, 15, 35, 0.66)),
    linear-gradient(180deg, rgba(18, 48, 90, 0.1), rgba(5, 13, 30, 0.22));
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(25, 61, 112, 0.86), transparent 44%),
    linear-gradient(135deg, #06132e 0%, #0d2346 48%, #07152f 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: preloaderFadeIn 1800ms ease both;
}

.preloader img {
  width: min(420px, 74vw);
  height: auto;
  filter:
    brightness(1.08)
    saturate(1.08)
    drop-shadow(0 0 18px rgba(196, 154, 42, 0.22));
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--night-950);
  background: var(--gold-500);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 9px 12px;
  color: var(--night-950);
  background: var(--gold-200);
  transform: translateY(-140%);
  transition: transform 240ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.gold-text,
.gold-shimmer {
  color: var(--gold-300);
  background:
    linear-gradient(135deg, var(--gold-500) 0%, var(--gold-200) 38%, var(--gold-400) 62%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha-soft)));
}

.gold-shimmer {
  background-size: 220% auto;
  animation: shimmer 5.5s ease-in-out infinite;
}

.gold-glow {
  box-shadow:
    0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)),
    0 0 var(--foil-glow-strong) rgba(196, 154, 42, var(--foil-alpha-soft));
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background-color 420ms ease, border-color 420ms ease, backdrop-filter 420ms ease;
}

.is-scrolled .site-nav {
  background: rgba(8, 23, 53, 0.9);
  border-color: rgba(196, 154, 42, 0.12);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
}

.logo img {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
  filter:
    brightness(var(--foil-brightness))
    saturate(var(--foil-saturation))
    drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)))
    drop-shadow(0 0 6px rgba(255, 246, 184, 0.36));
  transform: translate3d(0, var(--foil-drift), 0);
  will-change: filter, transform;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-menu a {
  position: relative;
  color: rgba(240, 236, 227, 0.72);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold-300);
}

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

.nav-menu .nav-cta {
  padding: 9px 18px;
  color: var(--gold-300);
  border: 1px solid rgba(196, 154, 42, 0.48);
}

.nav-menu .nav-cta::after {
  display: none;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: rgba(196, 154, 42, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 154, 42, 0.34);
  background: rgba(10, 17, 40, 0.5);
  color: var(--gold-300);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 24px 88px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  z-index: -4;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 35, 70, 0.14), rgba(8, 23, 53, 0.76)),
    var(--night-900);
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) brightness(0.86) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.42), rgba(10, 18, 34, 0.18) 42%, rgba(10, 18, 34, 0.74) 100%),
    linear-gradient(90deg, rgba(10, 18, 34, 0.62), rgba(10, 18, 34, 0.1), rgba(10, 18, 34, 0.64));
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 18, 34, 0.12) 50%, rgba(10, 18, 34, 0.58) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
}

.hero-lines span {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 42, 0.28), transparent);
}

.hero-lines span:nth-child(1),
.hero-lines span:nth-child(2) {
  right: 0;
  left: 0;
  height: 1px;
}

.hero-lines span:nth-child(1) {
  top: 25%;
}

.hero-lines span:nth-child(2) {
  top: 75%;
}

.hero-lines span:nth-child(3),
.hero-lines span:nth-child(4) {
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 154, 42, 0.18), transparent);
}

.hero-lines span:nth-child(3) {
  left: 25%;
}

.hero-lines span:nth-child(4) {
  right: 25%;
}

.hero-content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-emblem span {
  width: 68px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 42, 0.72));
  filter: drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)));
  transform: translate3d(0, var(--foil-drift-reverse), 0);
  will-change: filter, transform;
}

.hero-emblem span:last-child {
  background: linear-gradient(90deg, rgba(196, 154, 42, 0.72), transparent);
}

.hero-emblem i {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(196, 154, 42, 0.72);
  transform: rotate(45deg);
  box-shadow: 0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha));
  filter: brightness(var(--foil-brightness));
}

.hero-signature {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0 auto 32px;
  text-align: center;
  text-transform: uppercase;
  filter:
    drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha-soft)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)));
  transform: translate3d(0, var(--foil-drift-reverse), 0);
  will-change: filter, transform;
}

.hero-signature span,
.hero-signature strong {
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold-300);
  background:
    linear-gradient(135deg, var(--gold-700), var(--gold-200) 42%, var(--gold-400) 72%, var(--gold-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-signature span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.hero-signature small {
  color: rgba(240, 236, 227, 0.74);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.hero-signature strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.hero-signature strong::before,
.hero-signature strong::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 42, 0.72));
}

.hero-signature strong::after {
  background: linear-gradient(90deg, rgba(196, 154, 42, 0.72), transparent);
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 5.55rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(240, 236, 227, 0.72);
  font-size: 1.18rem;
  text-transform: uppercase;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 48px;
  padding: 0 30px;
  overflow: hidden;
  color: var(--gold-300);
  border: 1px solid rgba(196, 154, 42, 0.58);
  background: rgba(8, 23, 53, 0.34);
  box-shadow:
    0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha-soft)),
    inset 0 0 var(--foil-glow-soft) rgba(196, 154, 42, 0.035);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 320ms ease, border-color 320ms ease, transform 320ms ease;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -46%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(242, 217, 138, 0.36), transparent);
  transform: rotate(18deg);
  animation: foilSweep 7s ease-in-out infinite;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-300);
  background: rgba(196, 154, 42, 0.1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(240, 236, 227, 0.42);
  font-size: 0.68rem;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: floatCue 2.6s ease-in-out infinite;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(196, 154, 42, 0.58);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  position: relative;
  padding: 118px 0;
  background: var(--night-950);
  overflow: hidden;
}

.section-divider {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 42, 0.22), rgba(196, 154, 42, 0.54), rgba(196, 154, 42, 0.22), transparent);
  filter:
    drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)));
  transform: translate3d(0, var(--foil-drift-reverse), 0);
  will-change: filter, transform;
}

.section-header {
  margin: 0 auto 76px;
  max-width: 820px;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: rgba(196, 154, 42, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.18;
}

.section-header i,
.product-copy i {
  display: block;
  width: 96px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  filter:
    drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)));
  transform: translate3d(0, var(--foil-drift-reverse), 0);
  will-change: filter, transform;
}

.section-lead {
  max-width: 900px;
  margin: 24px auto 0;
  color: rgba(240, 236, 227, 0.64);
  font-size: 1rem;
  line-height: 1.82;
}

.map-context-copy {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 42px auto 0;
  color: rgba(240, 236, 227, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.map-context-copy p {
  margin: 0;
  font-size: 0.96rem;
}

.map-context-copy small {
  color: rgba(240, 236, 227, 0.46);
  font-size: 0.78rem;
  line-height: 1.6;
}

.triangle-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 30px;
  align-items: stretch;
}

.map-panel,
.gallery-panel {
  position: relative;
  min-height: 620px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 42, 0.16);
  background:
    linear-gradient(135deg, rgba(196, 154, 42, 0.06), transparent 34%),
    rgba(13, 35, 70, 0.46);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.map-panel::before,
.gallery-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 217, 138, 0.48), transparent);
  filter: drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha-soft)));
}

.panel-kicker {
  display: block;
  margin: 0 0 14px;
  color: rgba(196, 154, 42, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: calc(100% - 92px);
  aspect-ratio: 1349 / 1166;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 42, 0.2);
  background: #020b16;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(196, 154, 42, 0.08);
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  filter: saturate(1.12) brightness(0.92) contrast(1.03);
}

.map-image,
.map-overlay {
  transform-origin: center center;
  width: var(--map-layer-size);
  height: var(--map-layer-size);
  transform: translate3d(var(--map-layer-shift-x), var(--map-layer-shift-y), 0);
}

.map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(196, 154, 42, 0.1), transparent 34%, rgba(196, 154, 42, 0.06)),
    radial-gradient(ellipse at center, transparent 48%, rgba(2, 6, 13, 0.3) 100%);
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.map-route,
.map-route-triangle {
  fill: none;
  stroke: #c9a14a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4 12;
  stroke-dashoffset: 280;
  filter:
    drop-shadow(0 0 3px rgba(201, 161, 74, 0.52))
    drop-shadow(0 0 var(--foil-glow-soft) rgba(201, 161, 74, var(--foil-alpha-soft)));
  animation: mapFlowDrift 18s linear infinite;
}

.map-route-incoming {
  stroke-width: 5.6;
  stroke-opacity: 0.82;
}

.map-route-glow {
  fill: none;
  stroke: rgba(201, 161, 74, 0.22);
  stroke-width: 17;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(7px);
  opacity: 0.58;
}

.map-point {
  fill: #c9a14a;
  stroke: #f5e6b3;
  stroke-width: 1.5;
  filter:
    drop-shadow(0 0 6px #c9a14a)
    drop-shadow(0 0 var(--foil-glow-soft) rgba(201, 161, 74, var(--foil-alpha)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)));
}

.map-runner {
  fill: #ffffff;
  filter: drop-shadow(0 0 8px #ffffff) drop-shadow(0 0 18px #00d5ff);
}

.map-flow-dot {
  fill: #f2d98a;
  opacity: 0.68;
  filter:
    drop-shadow(0 0 5px rgba(242, 217, 138, 0.62))
    drop-shadow(0 0 12px rgba(196, 154, 42, 0.28));
}

.map-node-pulse {
  fill: rgba(196, 154, 42, 0.08);
  stroke: rgba(242, 217, 138, 0.34);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapNodePulse 6.4s ease-in-out infinite;
}

.map-node-core {
  fill: #d4a838;
  stroke: rgba(254, 254, 254, 0.58);
  stroke-width: 1.25;
  filter: drop-shadow(0 0 14px rgba(212, 168, 56, 0.6));
}

.map-label {
  fill: #f5e6b3;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.44);
  stroke-width: 7px;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 6px rgba(245, 230, 179, 0.55))
    drop-shadow(0 0 var(--foil-glow-soft) rgba(201, 161, 74, var(--foil-alpha-soft)));
}

.map-region-label {
  fill: rgba(240, 236, 227, 0.78);
  font-size: 26px;
  font-weight: 500;
}

.network-map-image,
.network-map-overlay,
.orbit-map-svg,
.orbit-labels {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.network-map-image {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) brightness(0.84) contrast(1.08);
}

.network-map-overlay {
  z-index: 3;
  pointer-events: none;
}

.orbit-map-svg {
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.orbit-labels {
  z-index: 4;
  pointer-events: none;
}

.orbit-route,
.orbit-route-soft {
  fill: none;
  stroke-linecap: round;
}

.orbit-route {
  stroke: #ffb347;
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: url("#orbitLineGlow");
  animation: orbitRouteDraw 2.2s ease-out forwards;
}

.orbit-route-soft {
  stroke: #ff8c00;
  stroke-width: 0.65;
  stroke-opacity: 0.28;
}

.orbit-node {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: orbitNodePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.orbit-ring {
  fill: none;
  stroke: #ffb347;
  stroke-width: 3;
  stroke-opacity: 0.15;
  transform-box: fill-box;
  transform-origin: center;
  animation: orbitRingPulse 4s ease-out infinite;
}

.orbit-core-one {
  fill: #ff8c00;
  fill-opacity: 0.45;
}

.orbit-core-two {
  fill: #ffbf5a;
  fill-opacity: 1;
}

.orbit-core-three {
  fill: #ffffff;
}

.orbit-particle {
  opacity: 0;
  filter: url("#orbitParticleGlow");
  animation: orbitParticleFade 2s ease-in-out infinite;
}

.orbit-label {
  position: absolute;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(7px, 0.7vw, 11px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 8px rgba(255, 179, 71, 0.9),
    0 0 16px rgba(255, 179, 71, 0.7),
    0 0 24px rgba(255, 179, 71, 0.5);
  white-space: nowrap;
}

.orbit-europe {
  left: 46.11%;
  top: 29.33%;
}

.orbit-istanbul {
  left: 56.34%;
  top: 35.33%;
}

.orbit-turkiye {
  left: 64.20%;
  top: 37.31%;
}

.orbit-north-africa {
  left: 40.77%;
  top: 46.40%;
}

.orbit-cairo {
  left: 52.26%;
  top: 50.43%;
}

.orbit-gcc {
  left: 69.09%;
  top: 46.57%;
}

.vmap-flow-line,
.vmap-flow-line-soft,
.vmap-flow-dash {
  fill: none;
  stroke-linecap: round;
}

.vmap-flow-line {
  stroke: rgba(255, 205, 110, 0.82);
  stroke-width: 2.2;
  filter: url("#vmapGoldGlow");
}

.vmap-flow-line-soft {
  stroke: rgba(255, 180, 70, 0.18);
  stroke-width: 8;
  filter: url("#vmapGoldGlow");
}

.vmap-flow-dash {
  stroke: rgba(255, 245, 205, 0.92);
  stroke-width: 8.4;
  stroke-dasharray: 8 26;
  filter: url("#vmapGoldGlowStrong");
  animation: vmapFlow 8s linear infinite;
}

.vmap-flow-dash.triggered-flow {
  opacity: 1;
  animation-play-state: running;
}

.vmap-flow-dash.triggered-flow.active {
  opacity: 1;
  animation-play-state: running;
}

.vmap-node-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: vmapCorePulse 4.8s ease-in-out infinite;
  filter: url("#vmapNodeGlow");
}

.vmap-node-ring {
  fill: none;
  opacity: 0.52;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: vmapRingPulse 5.8s ease-in-out infinite;
}

.vmap-node-ring.vmap-delay {
  animation-delay: 1.9s;
}

.vmap-node-ring.vmap-third {
  animation-delay: 3.8s;
}

.vmap-gold-core {
  fill: url("#vmapGoldGrad");
}

.vmap-istanbul-core {
  fill: url("#vmapIstanbulGrad");
}

.vmap-blue-core {
  fill: url("#vmapBlueGrad");
}

.vmap-orange-core {
  fill: url("#vmapOrangeGrad");
}

.vmap-label {
  fill: #f5d36b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(2, 6, 13, 0.64);
  stroke-width: 3px;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 10px rgba(245, 211, 107, 0.58))
    drop-shadow(0 0 18px rgba(196, 154, 42, 0.24));
}

.hub-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 900px;
  margin: 64px auto 0;
}

.hub-notes article {
  text-align: center;
}

.hub-notes span {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(196, 154, 42, 0.42);
}

.hub-notes h3,
.pillar-card h3,
.product-copy h3,
.timeline-content h3,
.footer h2,
.footer h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
}

.hub-notes h3 {
  color: var(--gold-300);
  font-size: 1.18rem;
}

.hub-notes p {
  margin: 7px 0 0;
  color: rgba(240, 236, 227, 0.52);
  font-size: 0.92rem;
}

.network-line {
  margin: 22px auto 0;
  color: rgba(196, 154, 42, 0.58);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 82px auto 0;
  border-top: 1px solid rgba(196, 154, 42, 0.16);
  border-bottom: 1px solid rgba(196, 154, 42, 0.12);
}

.trust-strip article {
  min-height: 140px;
  padding: 28px 22px;
  background: rgba(15, 27, 49, 0.32);
}

.trust-strip b {
  display: block;
  margin-bottom: 14px;
  color: rgba(232, 192, 79, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}

.trust-strip span {
  display: block;
  color: rgba(240, 236, 227, 0.58);
  font-size: 0.78rem;
  line-height: 1.64;
}

.trade-gallery {
  position: relative;
  height: calc(100% - 32px);
  min-height: 554px;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 42, 0.2);
  background: var(--night-900);
  isolation: isolate;
}

.trade-gallery::before,
.trade-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.trade-gallery::before {
  background:
    linear-gradient(180deg, rgba(13, 35, 70, 0.04), rgba(13, 35, 70, 0.2) 46%, rgba(8, 23, 53, 0.72)),
    linear-gradient(90deg, rgba(8, 23, 53, 0.48), transparent 46%, rgba(13, 35, 70, 0.18));
}

.trade-gallery::after {
  border: 1px solid rgba(242, 217, 138, 0.08);
  box-shadow:
    inset 0 0 42px rgba(196, 154, 42, 0.08),
    inset 0 -72px 110px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1100ms ease, transform 5200ms ease;
}

.gallery-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.84) contrast(1.06);
}

.gallery-slide figcaption {
  position: absolute;
  right: 26px;
  bottom: 30px;
  left: 26px;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-width: 420px;
  padding: 20px 22px;
  border-left: 1px solid rgba(232, 192, 79, 0.38);
  background:
    linear-gradient(90deg, rgba(10, 18, 34, 0.9), rgba(10, 18, 34, 0.7) 72%, rgba(10, 18, 34, 0.18));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.gallery-slide figcaption span {
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.gallery-slide figcaption strong {
  color: rgba(254, 254, 254, 0.96);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.22;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.78);
}

.gallery-dots {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.gallery-dots button {
  width: 24px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(240, 236, 227, 0.32);
  cursor: pointer;
  transition: width 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.gallery-dots button.is-active {
  width: 42px;
  background: var(--gold-300);
  box-shadow: 0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha));
}

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

.pillar-card {
  position: relative;
  min-height: 318px;
  padding: 38px;
  border: 1px solid rgba(196, 154, 42, 0.12);
  background: rgba(10, 17, 40, 0.32);
  transition: transform 420ms ease, border-color 420ms ease, background-color 420ms ease, box-shadow 420ms ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 154, 42, 0.34);
  background: rgba(10, 17, 40, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.top-left {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(196, 154, 42, 0.42);
  border-left: 1px solid rgba(196, 154, 42, 0.42);
}

.bottom-right {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(196, 154, 42, 0.42);
  border-bottom: 1px solid rgba(196, 154, 42, 0.42);
}

.pillar-card b {
  position: absolute;
  top: 28px;
  right: 34px;
  color: rgba(196, 154, 42, 0.11);
  font-family: "Cinzel", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(196, 154, 42, 0.22);
  color: rgba(212, 168, 56, 0.72);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  color: var(--gold-300);
  font-size: 1.28rem;
}

.pillar-card p {
  margin: 18px 0 0;
  color: rgba(240, 236, 227, 0.55);
  font-size: 0.95rem;
}

.why-global {
  margin-top: 92px;
  padding-top: 56px;
  border-top: 1px solid rgba(196, 154, 42, 0.12);
}

.why-global header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.why-global h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
}

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

.why-grid article {
  min-height: 190px;
  padding: 30px;
  border-top: 1px solid rgba(196, 154, 42, 0.2);
  background: rgba(15, 27, 49, 0.28);
}

.why-grid h4 {
  margin: 0;
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
}

.why-grid p {
  margin: 16px 0 0;
  color: rgba(240, 236, 227, 0.54);
  font-size: 0.9rem;
}

.product-list {
  display: grid;
  gap: 92px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.product-row.reverse {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
}

.product-row.reverse .product-image {
  order: 2;
}

.product-row.reverse .product-copy {
  order: 1;
}

.product-image {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 42, 0.2);
  background-color: var(--night-900);
  will-change: transform;
}

.product-image::before,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-image::before {
  background-position: center;
  background-size: cover;
  transition: transform 900ms ease;
}

.product-image:hover::before {
  transform: scale(1.045);
}

.baby-image::before {
  background-image: url("assets/bebek.jpg?auto=compress&cs=tinysrgb&w=900");
}

.home-image::before {
  background-image: url("assets/baby.jpg?auto=compress&cs=tinysrgb&w=900");
}

.product-image::after {
  background:
    linear-gradient(180deg, rgba(13, 35, 70, 0.02), rgba(8, 23, 53, 0.78)),
    linear-gradient(90deg, rgba(8, 23, 53, 0.4), transparent);
}

.product-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 6px 10px;
  color: var(--gold-300);
  border: 1px solid rgba(196, 154, 42, 0.42);
  background: rgba(8, 23, 53, 0.68);
  backdrop-filter: blur(12px);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-top: 10px;
  color: var(--gold-300);
  font-size: 2.65rem;
  line-height: 1.16;
}

.product-copy .lead {
  margin: 18px 0 0;
  color: rgba(240, 236, 227, 0.68);
  font-size: 1.12rem;
}

.product-copy p:not(.lead) {
  margin: 16px 0 0;
  color: rgba(240, 236, 227, 0.46);
  font-size: 0.96rem;
}

.product-copy i {
  margin-right: 0;
  margin-left: 0;
}

.sourcing-mastery {
  display: grid;
  gap: 42px;
}

.cotton-essence {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 42, 0.16);
  background: var(--night-900);
}

.cotton-essence img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.78) contrast(1.04);
}

.cotton-essence::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 34, 0.88), rgba(10, 18, 34, 0.42), rgba(10, 18, 34, 0.18)),
    linear-gradient(180deg, transparent, rgba(10, 18, 34, 0.62));
}

.cotton-essence div {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 76px 66px;
}

.cotton-essence h3 {
  margin: 0;
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 600;
  line-height: 1.15;
}

.cotton-essence p {
  margin: 22px 0 0;
  color: rgba(240, 236, 227, 0.68);
  font-size: 1rem;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sector-card {
  border-top: 1px solid rgba(196, 154, 42, 0.18);
  background: rgba(15, 27, 49, 0.3);
}

.sector-card figure {
  position: relative;
  height: 360px;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
}

.sector-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.04), rgba(10, 18, 34, 0.42));
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.84) contrast(1.05);
}

.sector-card div {
  padding: 34px;
}

.sector-card span {
  display: block;
  margin-bottom: 16px;
  color: rgba(196, 154, 42, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-card h3 {
  margin: 0;
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.sector-card p {
  margin: 18px 0 0;
  color: rgba(240, 236, 227, 0.55);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(196, 154, 42, 0.42), rgba(196, 154, 42, 0.16), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  min-height: 170px;
}

.timeline-item + .timeline-item {
  margin-top: 56px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(196, 154, 42, 0.7);
  background: var(--night-950);
  transform: translateX(-50%) rotate(45deg);
}

.timeline-item.left .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item.right .timeline-content {
  grid-column: 2;
}

.timeline-location {
  color: rgba(196, 154, 42, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin-top: 8px;
  color: var(--gold-300);
  font-size: 1.55rem;
}

.timeline-content b {
  display: block;
  margin-top: 8px;
  color: rgba(196, 154, 42, 0.48);
  font-weight: 600;
}

.timeline-content p {
  margin: 12px 0 0;
  color: rgba(240, 236, 227, 0.52);
  font-size: 0.94rem;
}

.authority-quote {
  max-width: 860px;
  margin: 88px auto 0;
  padding: 0;
  color: rgba(240, 236, 227, 0.64);
  border: 0;
  font-size: 1.12rem;
  font-style: italic;
  text-align: center;
}

.authority-quote::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 34px;
  background: rgba(196, 154, 42, 0.46);
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.founder-card {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-top: 1px solid rgba(196, 154, 42, 0.18);
  background: rgba(15, 27, 49, 0.28);
}

.founder-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.36)),
    var(--night-850);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.04), rgba(10, 18, 34, 0.34)),
    linear-gradient(90deg, rgba(10, 18, 34, 0.24), transparent 46%, rgba(10, 18, 34, 0.16));
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.founder-card h3 {
  margin: 24px 0 0;
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}


.founder-card h4 {
  margin: 24px 0 0;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.founder-card p {
  margin: 8px 0 0;
  color: rgba(240, 236, 227, 0.48);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.legacy-copy {
  color: rgba(240, 236, 227, 0.62);
  font-size: 1rem;
}

.legacy-copy > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.legacy-point {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(196, 154, 42, 0.14);
}

.legacy-point h3 {
  margin: 0;
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
}

.legacy-point p {
  margin: 14px 0 0;
  color: rgba(240, 236, 227, 0.56);
  line-height: 1.88;
}

.contact-form {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 236, 227, 0.42);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(196, 154, 42, 0.16);
  border-radius: 0;
  outline: 0;
  color: rgba(240, 236, 227, 0.86);
  background: rgba(10, 17, 40, 0.48);
  padding: 13px 14px;
  resize: vertical;
  transition: border-color 260ms ease, background-color 260ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 236, 227, 0.24);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(196, 154, 42, 0.46);
  background: rgba(10, 17, 40, 0.72);
}

.contact-form .primary-button {
  margin-top: 10px;
  border-radius: 0;
  cursor: pointer;
}

.contact-form .primary-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  min-height: 22px;
  margin: 18px 0 0;
  color: rgba(196, 154, 42, 0.7);
  font-size: 0.88rem;
}

.footer-cta {
  padding: 96px 0 0;
  background: var(--night-950);
}

.footer-cta-inner {
  display: grid;
  justify-items: center;
  max-width: 980px;
  padding: 76px 24px 92px;
  border-top: 1px solid rgba(196, 154, 42, 0.16);
  text-align: center;
}

.footer-cta h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.16;
}

.footer-cta p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(240, 236, 227, 0.62);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.cta-actions .primary-button,
.cta-actions .secondary-button {
  min-height: 56px;
  margin-top: 0;
  padding: 0 30px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: rgba(232, 192, 79, 0.84);
  border: 1px solid rgba(196, 154, 42, 0.38);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: border-color 300ms ease, background-color 300ms ease;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(232, 192, 79, 0.64);
  background: rgba(196, 154, 42, 0.06);
}

.footer {
  border-top: 1px solid rgba(196, 154, 42, 0.12);
  background: var(--night-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.35fr) minmax(190px, 0.6fr);
  gap: 72px;
  padding: 72px 0 58px;
}

.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  filter:
    brightness(var(--foil-brightness))
    saturate(var(--foil-saturation))
    drop-shadow(0 0 var(--foil-glow-soft) rgba(196, 154, 42, var(--foil-alpha)))
    drop-shadow(0 0 var(--foil-glow-strong) rgba(242, 217, 138, var(--foil-alpha-soft)))
    drop-shadow(0 0 8px rgba(255, 246, 184, 0.3));
  transform: translate3d(0, var(--foil-drift), 0);
  will-change: filter, transform;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(240, 236, 227, 0.42);
  font-size: 0.92rem;
}

.footer-brand .footer-values {
  color: rgba(232, 192, 79, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-seal {
  color: rgba(240, 236, 227, 0.5);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer-actions {
  display: flex;
  gap: 13px;
  margin-top: 24px;
}

.footer-actions a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 154, 42, 0.22);
  color: rgba(196, 154, 42, 0.62);
  transition: border-color 260ms ease, color 260ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  color: var(--gold-300);
  border-color: rgba(196, 154, 42, 0.58);
}

.footer-actions svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-lines {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.footer-contact-lines a {
  width: fit-content;
  color: rgba(240, 236, 227, 0.58);
  font-size: 0.82rem;
  transition: color 240ms ease;
}

.footer-contact-lines a:hover,
.footer-contact-lines a:focus-visible {
  color: var(--gold-300);
}

.offices {
  font-style: normal;
}

.footer h3 {
  margin-bottom: 22px;
  color: var(--gold-300);
  font-size: 0.95rem;
}

.offices p {
  margin: 0;
  color: rgba(240, 236, 227, 0.42);
  font-size: 0.9rem;
  line-height: 1.72;
}

.offices p + p {
  margin-top: 24px;
}

.offices span {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 236, 227, 0.68);
  font-weight: 700;
  text-transform: uppercase;
}

.qr-area {
  display: grid;
  justify-items: end;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  width: 118px;
  height: 118px;
  padding: 14px;
  border: 1px solid rgba(196, 154, 42, 0.22);
  background: rgba(10, 17, 40, 0.5);
}

.qr-code span {
  background: rgba(196, 154, 42, 0.12);
}

.qr-code span:nth-child(1),
.qr-code span:nth-child(2),
.qr-code span:nth-child(3),
.qr-code span:nth-child(5),
.qr-code span:nth-child(6),
.qr-code span:nth-child(8),
.qr-code span:nth-child(9),
.qr-code span:nth-child(11),
.qr-code span:nth-child(12),
.qr-code span:nth-child(13),
.qr-code span:nth-child(14),
.qr-code span:nth-child(15),
.qr-code span:nth-child(16),
.qr-code span:nth-child(17),
.qr-code span:nth-child(20),
.qr-code span:nth-child(21),
.qr-code span:nth-child(22),
.qr-code span:nth-child(23),
.qr-code span:nth-child(25) {
  background: rgba(196, 154, 42, 0.68);
}

.qr-area p {
  max-width: 220px;
  margin: 16px 0 0;
  color: rgba(240, 236, 227, 0.38);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(196, 154, 42, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(240, 236, 227, 0.28);
  font-size: 0.78rem;
}

.footer-motto {
  color: rgba(232, 192, 79, 0.76) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem !important;
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 820ms ease, transform 820ms ease;
}

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

[data-gold].is-visible,
.is-visible [data-gold] {
  filter: drop-shadow(0 0 16px rgba(196, 154, 42, 0.16));
}

@keyframes shimmer {
  0% {
    background-position: -220% center;
  }

  100% {
    background-position: 220% center;
  }
}

@keyframes foilSweep {
  0%,
  58%,
  100% {
    left: -46%;
  }

  76% {
    left: 118%;
  }
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@keyframes vmapFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }
}

@keyframes vmapRingPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.18);
  }
}

@keyframes vmapCorePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes orbitRouteDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes orbitParticleFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  80% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
  }
}

@keyframes orbitNodePop {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }

  70% {
    opacity: 1;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbitRingPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes mapDash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -540;
  }
}

@keyframes mapFlowDrift {
  from {
    stroke-dashoffset: 280;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes mapDrawRoute {
  0% {
    opacity: 0.15;
    stroke-dashoffset: 900;
  }

  18% {
    opacity: 1;
  }

  70% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.2;
    stroke-dashoffset: -260;
  }
}

@keyframes mapNodePulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.46;
    transform: scale(1.34);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes slideLine {
  0% {
    stroke-dashoffset: 72;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -72;
  }
}

@keyframes pulseGold {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.9);
    transform-origin: center;
  }

  50% {
    opacity: 0.94;
    transform: scale(1.28);
    transform-origin: center;
  }
}

@media (max-width: 1020px) {
  .hero h1 {
    font-size: 4.25rem;
  }

  .section {
    padding: 96px 0;
  }

  .section-header h2 {
    font-size: 2.7rem;
  }

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

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

  .why-grid,
  .sector-grid,
  .legacy-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    position: static;
  }

  .triangle-showcase {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .gallery-panel {
    min-height: 0;
  }

  .map-wrap {
    height: auto;
    min-height: 420px;
    aspect-ratio: 1349 / 1166;
  }

  .map-image,
  .map-overlay {
    width: var(--map-layer-size);
    height: var(--map-layer-size);
    transform: translate3d(var(--map-layer-shift-x), var(--map-layer-shift-y), 0);
  }

  .trade-gallery {
    height: auto;
    min-height: 500px;
    aspect-ratio: 16 / 10;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-row.reverse .product-image,
  .product-row.reverse .product-copy {
    order: initial;
  }

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

  .qr-area {
    justify-items: start;
  }
}

@media (max-width: 780px) {
  .container,
  .nav-inner {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-inner {
    min-height: 68px;
  }

  .logo {
    min-height: 48px;
  }

  .logo img {
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 24px 24px;
    border-top: 1px solid rgba(196, 154, 42, 0.12);
    background: rgba(8, 23, 53, 0.96);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  }

  .menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 0;
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
    padding: 12px 14px;
    text-align: center;
  }

  .hero {
    min-height: 96svh;
    padding: 112px 18px 90px;
  }

  .hero-lines span:nth-child(3),
  .hero-lines span:nth-child(4) {
    display: none;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-signature {
    gap: 7px;
    margin-bottom: 26px;
  }

  .hero-signature span {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .hero-signature small {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero-signature strong {
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .hero-signature strong::before,
  .hero-signature strong::after {
    width: 30px;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .primary-button {
    width: min(100%, 360px);
    padding: 0 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .section-header h2 {
    font-size: 2.15rem;
  }

  .section-lead {
    font-size: 0.94rem;
  }

  .map-context-copy {
    margin-top: 32px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .trust-strip article {
    min-height: 0;
    padding: 24px 20px;
  }

  .map-wrap {
    aspect-ratio: 1349 / 1166;
    min-height: 360px;
  }

  .map-image,
  .map-overlay {
    width: var(--map-layer-size);
    height: var(--map-layer-size);
    transform: translate3d(var(--map-layer-shift-x), var(--map-layer-shift-y), 0);
    transform-origin: center center;
  }

  .map-route-triangle {
    stroke-width: 4;
  }

  .map-route-glow {
    stroke-width: 17;
  }

  .map-point {
    r: 8;
  }

  .map-runner {
    r: 5.5;
  }

  .map-label {
    font-size: 42px;
    stroke-width: 9px;
  }

  .vmap-label {
    font-size: 25px;
    letter-spacing: 2.4px;
  }

  .gallery-panel,
  .map-panel {
    padding: 14px;
  }

  .trade-gallery {
    min-height: 430px;
    aspect-ratio: 1 / 1.04;
  }

  .gallery-slide figcaption {
    right: 18px;
    bottom: 24px;
    left: 18px;
    max-width: none;
    padding: 18px 18px;
  }

  .gallery-slide figcaption strong {
    font-size: 1.08rem;
  }

  .gallery-dots {
    right: 18px;
    top: 16px;
  }

  .hub-notes {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 44px;
  }

  .network-line {
    font-size: 0.76rem;
  }

  .why-global {
    margin-top: 68px;
    padding-top: 44px;
  }

  .why-global h3,
  .footer-cta h2 {
    font-size: 2rem;
  }

  .cotton-essence {
    min-height: 500px;
  }

  .cotton-essence div {
    padding: 52px 30px;
  }

  .cotton-essence h3 {
    font-size: 2rem;
  }

  .sector-card figure {
    height: 300px;
    min-height: 300px;
  }

  .legacy-grid {
    gap: 42px;
  }

  .founder-photo {
    min-height: 360px;
  }

  .footer-cta-inner {
    padding: 58px 20px 72px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .primary-button,
  .cta-actions .secondary-button {
    width: min(100%, 360px);
    min-height: 56px;
  }

  .product-image {
    min-height: 340px;
  }

  .product-copy h3 {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    display: block;
    min-height: 0;
    padding-left: 34px;
  }

  .timeline-item::before {
    left: 7px;
    transform: translateX(-50%) rotate(45deg);
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    text-align: left;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .hero-signature strong::before,
  .hero-signature strong::after {
    width: 18px;
  }

  .hero-signature span,
  .hero-signature strong {
    letter-spacing: 0.14em;
  }

  .hero-signature small {
    letter-spacing: 0.12em;
  }

  .hero-emblem span {
    width: 48px;
  }

  .section-header h2 {
    font-size: 1.82rem;
  }

  .hero h1 {
    font-size: 1.86rem;
  }

  .hero p {
    font-size: 0.86rem;
  }

  .cotton-essence {
    min-height: 460px;
  }

  .cotton-essence h3 {
    font-size: 1.55rem;
  }

  .sector-card div,
  .why-grid article {
    padding: 26px 22px;
  }

  .footer-cta h2 {
    font-size: 1.64rem;
  }

  .map-wrap {
    min-height: 320px;
  }

  .map-image,
  .map-overlay {
    width: var(--map-layer-size);
    height: var(--map-layer-size);
    transform: translate3d(var(--map-layer-shift-x), var(--map-layer-shift-y), 0);
  }

  .map-label {
    font-size: 48px;
  }

  .vmap-label {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .trade-gallery {
    min-height: 360px;
  }

  .gallery-slide figcaption {
    padding: 16px;
  }

  .gallery-slide figcaption strong {
    font-size: 0.96rem;
  }

  .gallery-dots button {
    width: 18px;
  }

  .gallery-dots button.is-active {
    width: 32px;
  }

  .pillar-card {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
