:root {
  --navy-950: #041022;
  --navy-900: #07162e;
  --navy-800: #0d2446;
  --blue: #2e6fb8;
  --red: #d94242;
  --gold: #f4b541;
  --white: #ffffff;
  --muted: rgba(239, 246, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(6, 22, 48, 0.76);
  --glass-strong: rgba(4, 16, 34, 0.9);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }
a { color: inherit; }
button, input { font: inherit; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { display: flex; gap: 8px; align-items: end; height: 38px; }
.loader-mark span {
  width: 8px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  animation: loadBars .8s ease-in-out infinite alternate;
}
.loader-mark span:nth-child(1) { height: 16px; }
.loader-mark span:nth-child(2) { height: 34px; animation-delay: .16s; }
.loader-mark span:nth-child(3) { height: 24px; animation-delay: .32s; }
@keyframes loadBars { to { height: 10px; opacity: .5; } }

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.background { position: fixed; inset: 0; z-index: -3; }
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  filter: saturate(.92) contrast(1.02);
}
.background__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,16,34,.94) 0%, rgba(4,16,34,.79) 44%, rgba(4,16,34,.58) 72%, rgba(4,16,34,.78) 100%),
    linear-gradient(180deg, rgba(4,16,34,.3), rgba(4,16,34,.66) 70%, rgba(4,16,34,.96));
}
.background__grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.background__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .18;
}
.background__glow--one { left: -100px; top: 30%; background: #2471c8; }
.background__glow--two { right: -100px; top: 8%; background: #d94242; }

.site-header {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}
.brand img { width: clamp(190px, 20vw, 238px); height: auto; }
.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  background: rgba(5, 19, 41, .58);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  font-size: 13px;
  letter-spacing: .02em;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55d795;
  box-shadow: 0 0 0 5px rgba(85,215,149,.13);
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse { 50% { box-shadow: 0 0 0 9px rgba(85,215,149,0); } }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(290px, .75fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px 0 38px;
}
.hero-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.hero-card {
  min-height: 590px;
  padding: clamp(34px, 5.5vw, 72px);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(5,20,44,.92), rgba(8,29,60,.76));
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5px;
  height: 34%;
  background: linear-gradient(var(--red), var(--gold));
  border-radius: 0 0 8px 0;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.018);
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #ffca69;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow__line { width: 38px; height: 2px; background: var(--red); }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 820;
}
.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(95deg, #fff 8%, #a8d0ff 48%, #ffca69 96%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}
.construction-status {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(244,181,65,.28);
  border-radius: 16px;
  background: rgba(244,181,65,.08);
}
.construction-status__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border-radius: 12px;
  background: rgba(244,181,65,.12);
}
.construction-status__icon svg { width: 30px; }
.construction-status strong,
.construction-status span { display: block; }
.construction-status strong { font-size: 13px; letter-spacing: .1em; }
.construction-status span { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 12px; }

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.19);
}
.service-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffca69;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(46,111,184,.32), rgba(217,66,66,.14));
}
.service-icon svg { width: 25px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-item strong,
.service-item span { display: block; }
.service-item strong { font-size: 14px; }
.service-item span { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.35; }

.contact-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(8,31,64,.88), rgba(4,16,34,.92));
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -84px;
  right: -84px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,111,184,.35), transparent 66%);
}
.contact-card__label {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 10px;
  color: #ffd27e;
  background: rgba(244,181,65,.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-card h2 {
  position: relative;
  z-index: 1;
  margin: 26px 0 10px;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.contact-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: rgba(255,255,255,.59);
  font-size: 14px;
  line-height: 1.65;
}
.contact-link,
.location-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
}
.contact-link {
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.contact-link:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.21); background: rgba(255,255,255,.075); }
.contact-link__icon,
.location-row__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #b9d8ff;
  background: rgba(46,111,184,.18);
}
.contact-link__icon svg,
.location-row__icon svg { width: 22px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-link small,
.contact-link strong,
.location-row small,
.location-row strong { display: block; }
.contact-link small,
.location-row small { color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.contact-link strong,
.location-row strong { margin-top: 3px; font-size: 13px; }
.contact-link__arrow { width: 18px; margin-left: auto; stroke: rgba(255,255,255,.5); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.location-row { margin-top: 12px; }
.trade-route {
  position: relative;
  min-height: 126px;
  margin-top: auto;
  overflow: hidden;
}
.trade-route__line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 72px;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,.28);
  transform: rotate(-8deg);
}
.trade-route__node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(244,181,65,.12);
}
.trade-route__node--start { left: 18px; top: 82px; }
.trade-route__node--end { right: 18px; top: 37px; }
.trade-route__plane {
  position: absolute;
  left: 41%;
  top: 46px;
  width: 31px;
  color: #fff;
  transform: rotate(-11deg);
  animation: planeFloat 3.5s ease-in-out infinite;
}
@keyframes planeFloat { 50% { transform: translate(8px,-5px) rotate(-11deg); } }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 34px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  letter-spacing: .025em;
}
.site-footer p { margin: 0; }
.site-footer span { color: var(--red); margin-inline: 5px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.2,.75,.2,1), transform .9s cubic-bezier(.2,.75,.2,1);
}
.reveal--delay { transition-delay: .14s; }
body.is-ready .reveal { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .background img { object-position: 63% center; }
  .hero { grid-template-columns: 1fr; }
  .hero-card, .contact-card { min-height: auto; }
  .contact-card { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; }
  .contact-card__label, .contact-card h2, .contact-card > p, .trade-route { grid-column: 1 / -1; }
  .location-row { margin-top: 0; }
  .trade-route { min-height: 110px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { min-height: 92px; padding-block: 16px; }
  .header-pill { font-size: 0; padding: 11px; }
  .header-pill .status-dot { margin: 0; }
  .hero { padding-top: 14px; gap: 16px; }
  .hero-card { padding: 34px 24px; border-radius: 24px; }
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-copy { line-height: 1.65; }
  .service-grid { grid-template-columns: 1fr; gap: 9px; }
  .service-item { min-height: 78px; }
  .contact-card { grid-template-columns: 1fr; padding: 28px 22px; border-radius: 24px; }
  .contact-card__label, .contact-card h2, .contact-card > p, .trade-route { grid-column: auto; }
  .location-row { margin-top: 12px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 420px) {
  .brand img { width: 170px; }
  .hero-card { padding-inline: 20px; }
  .construction-status { width: 100%; }
  .construction-status strong { font-size: 12px; }
}

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