:root {
  --bg: #080d14;
  --bg-2: #101923;
  --text: #f5f7fa;
  --muted: #9aa5b3;
  --gold: #c8a24e;
  --gold-soft: rgba(200, 162, 78, 0.18);
  --gold-line: rgba(200, 162, 78, 0.32);
  --blue: #1769d5;
  --blue-soft: rgba(23, 105, 213, 0.16);
  --line: rgba(245, 247, 250, 0.08);
  --sans: "Manrope", system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
  --max: 1240px;
  --header: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--bg);
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
}

.hero,
.hero-copy {
  max-width: 100%;
  min-width: 0;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.display,
h1,
.page-title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.lead {
  max-width: min(42rem, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-2);
}

.gold-line {
  width: 48px;
  height: 1px;
  margin: 22px 0;
  background: var(--gold);
  transform-origin: left;
  animation: lineIn 1s var(--ease) both;
}

@keyframes lineIn {
  from {
    transform: scaleX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 10px;
  transition: 0.28s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #14110b;
}

.btn-gold:hover {
  background: #d7b56a;
}

.btn-line {
  border-color: var(--gold-line);
  color: var(--text);
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: transparent;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 20, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav-desktop a,
.nav-mobile a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop a:hover,
.nav-desktop a.is-active,
.nav-mobile a.is-active,
.nav-mobile a:hover {
  color: var(--text);
}

.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang button {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  min-height: 32px;
}

.lang button.is-active,
.lang button:hover {
  color: var(--gold);
}

.lang-sep {
  color: var(--gold-line);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 1px solid rgba(245, 247, 250, 0.16);
}

.lang button {
  color: #c5ced8;
  font-size: 12px;
  letter-spacing: 0.14em;
  min-height: 32px;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--text);
  transition: 0.25s var(--ease);
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 25px;
}

body.nav-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  padding: 24px 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5.4vw, 68px);
}

.hero-role {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: min(28rem, 100%);
  margin: 0 0 28px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-company {
  margin: 0 0 32px;
  color: var(--muted);
}

.hero-company strong {
  display: block;
  color: var(--text);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: min(78vh, 760px);
}

.portrait-frame {
  position: relative;
  height: 100%;
  min-height: min(78vh, 760px);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 105, 213, 0.18), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(200, 162, 78, 0.12), transparent 32%),
    #070b12;
}

.portrait-frame > img:first-of-type {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  animation: imageReveal 1.4s var(--ease) both;
}

.portrait-mark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 28px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: rgba(245, 247, 250, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
    filter: saturate(0.7);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.preview-grid,
.card-grid,
.focus-grid {
  display: grid;
  gap: 18px;
}

.preview-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.card-grid,
.focus-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.card,
.preview-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: rgba(16, 25, 35, 0.35);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover,
.preview-card:hover {
  border-color: var(--gold-line);
}

.card h3,
.preview-card h3,
.work-copy h3,
.pvx-block h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card p,
.preview-card p,
.work-copy p,
.pvx-block p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin: 8px 0 0 12px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.text-link:hover::after {
  width: 44px;
}

.page-hero {
  padding: clamp(48px, 8vw, 92px) 0 24px;
}

.page-hero .lead {
  margin-top: 24px;
}

.work-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 92px);
}

.work-block.is-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.work-block.is-reverse .work-copy {
  order: 2;
}

.work-visual {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.work-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.work-num {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.carousel {
  margin-top: 36px;
}

.carousel-viewport {
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  touch-action: pan-y;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.carousel-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-height: 64px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.carousel-item:hover,
.carousel-item.is-active {
  color: var(--text);
}

.carousel-item.is-active {
  background: linear-gradient(180deg, rgba(200, 162, 78, 0.12), transparent);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.carousel-flag {
  display: inline-flex;
  width: 22px;
  height: 16px;
  overflow: hidden;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.carousel-name {
  display: block;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.carousel-flag img,
.region-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-flag {
  display: inline-flex;
  width: 18px;
  height: 13px;
  overflow: hidden;
}

.carousel-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.region-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(16, 25, 35, 0.4);
}

.region-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  gap: 12px;
}

.region-card h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.region-card header span {
  color: var(--gold);
  font-size: 12px;
}

.region-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.region-chip {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 10px;
  text-align: left;
  color: var(--muted);
}

.region-chip:hover,
.region-chip.is-active {
  color: var(--text);
  background: rgba(245, 247, 250, 0.03);
}

.region-chip em {
  margin-left: auto;
  color: var(--gold);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pvx-blocks {
  display: grid;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.pvx-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.pvx-block h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--gold);
  font-size: 18px;
}

.contact-card a.btn {
  color: #14110b;
  font-size: 13px;
  width: auto;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.platform-chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 13px;
}

.contact-page {
  min-height: calc(100svh - 280px);
  padding-bottom: 80px;
}

.contact-card {
  max-width: 560px;
  margin-top: 48px;
}

.contact-card b {
  display: block;
  font-size: 22px;
  font-weight: 500;
}

.contact-card span,
.contact-card p {
  color: var(--muted);
}

.final-cta {
  text-align: left;
}

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: #070b11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-name {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.hero-display {
  margin: 8px 0 0;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero-display span {
  display: block;
}

.hero-net {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}

.hero-net svg {
  width: 100%;
  height: 100%;
}

.net-lines path {
  stroke-dasharray: 8 14;
  animation: dash 18s linear infinite;
}

.net-nodes .pulse {
  transform-origin: center;
  animation: pulse 3.6s ease-in-out infinite;
}

.what-grid,
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.flow-steps {
  grid-template-columns: repeat(4, 1fr);
}

.what-card,
.flow-step,
.glass-panel,
.country-panel {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: rgba(16, 25, 35, 0.55);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.what-card:hover,
.flow-step:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.what-num,
.flow-step span,
.timeline span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}

.what-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--gold);
}

.what-icon svg,
.what-icon svg * {
  stroke-width: 1.4;
}

.what-card h3,
.flow-step h3,
.glass-panel h2,
.country-panel h2,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.what-card p,
.flow-step p,
.glass-panel p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.chain-node {
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.chain-node.is-core {
  border-color: var(--gold-line);
  color: var(--text);
  background: rgba(200, 162, 78, 0.08);
}

.chain-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.chain-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  animation: shimmer 2.8s ease-in-out infinite;
}

.map-stage {
  position: relative;
  margin-top: 40px;
  min-height: min(72vw, 620px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070b12 url("../assets/world-map.webp") center / cover no-repeat;
}

.map-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-dot {
  fill: var(--gold);
  filter: drop-shadow(0 0 6px rgba(200, 162, 78, 0.8));
}

.map-arc {
  fill: none;
  stroke: rgba(23, 105, 213, 0.35);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  animation: dash 22s linear infinite;
}

.markets-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px 40px;
  align-items: start;
}

.markets-copy .display,
.markets-copy .page-title {
  max-width: 16ch;
}

.country-panel--aside {
  margin: 0;
  max-width: none;
  width: 100%;
  min-height: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 16px 16px 16px 18px;
}

.country-panel--aside.is-empty {
  grid-template-columns: 1fr;
}

.country-panel--aside .country-panel-flag {
  width: 44px;
  height: 32px;
  margin-top: 22px;
}

.country-panel--aside h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.country-panel--aside .kicker {
  display: none;
}

.country-panel--aside .channel-list {
  gap: 6px;
  margin: 0 0 12px;
}

.country-panel--aside .channel-chip {
  min-height: 32px;
  padding: 4px 8px;
}

.country-panel--aside .channel-chip img {
  height: 16px;
  max-width: 72px;
}

.country-panel--aside .channel-chip--mark {
  min-height: 36px;
  padding: 4px 8px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.country-panel--aside .channel-chip--mark img {
  height: 22px;
  max-width: 96px;
}

.country-panel--aside .channel-chip b {
  font-size: 12px;
}

.country-panel--aside .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 11px;
}

.country-panel {
  position: relative;
  margin: 28px auto 12px;
  max-width: 720px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  padding: 22px 22px 22px 24px;
  overflow: hidden;
}

.country-panel[hidden] {
  display: none;
}

.country-panel.is-open {
  animation: panelIn 0.42s var(--ease) both;
}

.country-panel.is-empty {
  grid-template-columns: 1fr;
}

.country-panel.is-yours {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 1px rgba(200, 162, 78, 0.12), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.country-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(23, 105, 213, 0.2));
}

.country-panel-flag {
  width: 56px;
  height: 40px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.country-panel-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.country-panel-body {
  min-width: 0;
}

.country-panel-body > p {
  margin: 10px 0 0;
  color: var(--muted);
}

.country-panel-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.country-panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.country-panel .kicker {
  margin-bottom: 12px;
}

.country-panel .btn {
  width: auto;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 20, 0.55);
}

.channel-chip img {
  height: 22px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
}

.channel-chip--mark {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.channel-chip--mark img {
  height: 28px;
  max-width: 132px;
}

.channel-chip b {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.focus-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.focus-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.gateway-visual {
  display: grid;
  grid-template-columns: 0.7fr 80px 1.1fr 80px 0.9fr;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--line);
}

.gw-col {
  display: grid;
  gap: 10px;
}

.gw-col span,
.gw-core {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gw-core {
  border-color: var(--gold-line);
  background: rgba(200, 162, 78, 0.08);
}

.gw-core small {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

.gw-lines {
  display: grid;
  gap: 14px;
}

.gw-lines i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform-origin: left;
  animation: lineIn 1.6s var(--ease) both;
}

.timeline {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  border-left: 1px solid var(--gold-line);
}

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 0 0 32px 28px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes dash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  to { transform: translateX(120%); }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .what-grid,
  .flow-steps,
  .country-panel,
  .gateway-visual,
  .markets-split {
    grid-template-columns: 1fr;
  }

  .markets-copy .display,
  .markets-copy .page-title {
    max-width: none;
  }

  .country-panel {
    padding: 22px 18px;
  }

  .country-panel-flag {
    margin-top: 8px;
  }

  .country-panel h2 {
    font-size: 24px;
  }

  .country-panel .btn {
    width: 100%;
  }

  .chain,
  .gateway-visual {
    display: grid;
  }

  .chain-line,
  .gw-lines {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .map-stage {
    min-height: 420px;
  }
}


@media (max-width: 1439px) {
  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-visual,
  .portrait-frame {
    min-height: 620px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    inset: var(--header) 0 0 0;
    z-index: 30;
    padding: 32px var(--pad);
    background: rgba(8, 13, 20, 0.96);
  }

  .nav-mobile[hidden] {
    display: none;
  }

  .hero-grid,
  .preview-grid,
  .card-grid,
  .focus-grid,
  .work-block,
  .work-block.is-reverse,
  .region-grid,
  .footer-grid,
  .pvx-block {
    grid-template-columns: 1fr;
  }

  .work-block.is-reverse .work-copy {
    order: 1;
  }

  .work-block.is-reverse .work-visual {
    order: 0;
  }

  .hero-visual,
  .portrait-frame,
  .work-visual,
  .work-visual img {
    min-height: 420px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .header-end {
    gap: 4px;
  }

  .btn {
    min-height: 50px;
    width: 100%;
  }

  .cta-row {
    display: grid;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-visual,
  .portrait-frame {
    min-height: 68vw;
    max-height: 520px;
  }

  .carousel-item {
    min-height: 58px;
    padding: 0 16px;
  }

  .carousel-name {
    font-size: 16px;
  }

  .page-hero {
    padding-top: 28px;
  }

  .work-visual,
  .work-visual img {
    min-height: 240px;
  }
}

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

  .reveal,
  .portrait-frame img,
  .hero-display span {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .net-lines path,
  .chain-line,
  .gw-lines i,
  .map-arc,
  .country-panel.is-open {
    animation: none;
  }
}
