:root {
  --navy: #203088;
  --blue: #203088;
  --blue-hover: #2a3c9a;
  --blue-deep: #182070;
  --blue-soft: rgba(32, 48, 136, 0.12);
  --on-navy: #e8eaf4;
  --red: #e00414;
  --red-hover: #c40412;
  --bg: #f5f5f7;
  --bg-white: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --nav: rgba(251, 251, 253, 0.78);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --nav-h: 52px;
  --max: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.site {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: var(--nav);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.site-nav .inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 17px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand img,
.brand svg {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 980px;
  text-decoration: none;
  opacity: 0.88;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 980px;
  padding: 2px;
}

.lang-switch a {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 980px;
  text-decoration: none;
}

.lang-switch a.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-sm {
  min-height: 32px;
  padding: 0 14px;
  font-size: 12px;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--red);
}

.btn-ghost:hover {
  background: rgba(224, 4, 20, 0.08);
}

.btn-dark {
  background: var(--red);
  color: #fff;
}

.btn-dark:hover {
  background: var(--red-hover);
  color: #fff;
}

a.btn-green {
  background: #16a34a;
  color: #fff;
}

a.btn-green:hover {
  background: #15803d;
  color: #fff;
}

.track-login-wrap {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.home-video {
  background: #0b1020;
  padding: 20px 0 12px;
}

.home-video-player {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hero {
  padding: 48px 0 48px;
  text-align: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
.display {
  color: var(--navy);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 auto 18px;
  max-width: 16ch;
}

.lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.teaser {
  background: radial-gradient(ellipse at center, #1a1630 0%, #0b1020 62%, #080b14 100%);
  padding: 56px 0;
}

.teaser-visual {
  margin: 0 auto;
  width: min(520px, 100%);
}

.teaser-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(212, 175, 55, 0.12);
}

.track-card {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.track-form {
  display: flex;
  gap: 10px;
}

.track-form input,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbfd;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.track-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.track-hint,
.field-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 4px 0;
  text-align: left;
}

.track-result {
  text-align: left;
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg);
  display: none;
}

.track-result.is-on {
  display: block;
}

.track-result.is-error {
  color: #c41e3a;
}

.progress {
  display: flex;
  gap: 4px;
  margin: 12px 0 16px;
}

.progress i {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.progress i.on {
  background: var(--blue);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  font-size: 14px;
}

.meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--navy);
  color: #f5f5f7;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #f5f5f7;
}

.section-dark .muted,
.section-dark .lead {
  color: var(--on-navy);
}

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

.kicker {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 12px;
}

h3 {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.section-dark .card {
  background: rgba(0, 0, 0, 0.22);
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, 0.12);
}

.card p {
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
}

.section-dark .card p {
  color: var(--on-navy);
}

.icon-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-mark svg {
  width: 26px;
  height: 26px;
}

.card:hover .icon-mark {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.step {
  counter-increment: how;
}

.step .num {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-band {
  text-align: center;
  padding: 88px 0;
}

.loc-card {
  min-height: 0;
}

.loc-card address {
  font-style: normal;
  color: var(--muted);
  margin: 0 0 12px;
  white-space: pre-line;
}

.map-board {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-stage {
  position: relative;
  min-height: 380px;
  background: #eef2f6;
}

.world {
  width: 100%;
  height: 100%;
  display: block;
}

.world .route {
  stroke: var(--blue);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  opacity: 0.45;
}

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
}

.pin .dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(32, 48, 136, 0.18);
  animation: pin-pulse 2.4s ease-out infinite;
}

@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(32, 48, 136, 0.35); }
  70% { box-shadow: 0 0 0 14px rgba(32, 48, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(32, 48, 136, 0); }
}

.pin .label {
  position: absolute;
  left: 22px;
  top: -10px;
  white-space: nowrap;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pin .label small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
}

.pin .pin-left {
  left: auto;
  right: 22px;
}

.map-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-copy h2 {
  font-size: 32px;
}

.map-copy p {
  color: var(--muted);
  margin: 0 0 12px;
}

.map-copy .need {
  color: var(--text);
  font-weight: 600;
  margin: 8px 0 18px;
}

.map-copy .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.page-hero {
  padding: 64px 0 24px;
}

.page-hero h1 {
  max-width: 18ch;
  margin-left: 0;
  text-align: left;
}

.page-hero .lead {
  margin-left: 0;
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.prose p {
  font-size: 19px;
  color: var(--muted);
  max-width: 48ch;
}

.contact-list a {
  color: var(--navy);
  font-weight: 500;
}

.contact-meta {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-meta a {
  color: var(--navy);
  font-weight: 500;
}

.contact-meta span {
  margin: 0 8px;
  color: var(--muted);
}

.bank {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 22px;
}

.bank h3 {
  font-size: 17px;
}

.auth-shell {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.auth-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 32px;
  max-width: none;
  margin-bottom: 8px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-danger {
  background: #fff2f2;
  color: #c41e3a;
}

.alert-ok {
  background: #edf8ef;
  color: #1c7c3a;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.site-footer {
  background: var(--navy);
  color: var(--on-navy);
  padding: 48px 0 28px;
  font-size: 13px;
}

.site-footer a {
  color: #fff;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 13px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0 0 8px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mobile-panel {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .map-board { grid-template-columns: 1fr; }
  .teaser-visual { width: min(360px, 100%); }
}

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

  .nav-actions {
    margin-left: auto;
    gap: 6px;
  }

  .nav-actions .lang-switch,
  .nav-actions .nav-register {
    display: none;
  }

  .nav-actions .nav-login {
    background: var(--red);
    color: #fff;
    font-weight: 600;
  }

  .nav-actions .nav-login:hover {
    background: var(--red-hover);
    color: #fff;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: 2px;
  }

  .mobile-panel {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: #fbfbfd;
    padding: 20px;
    z-index: 39;
    overflow: auto;
  }

  body.nav-open .mobile-panel {
    display: block;
  }

  .mobile-panel a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 21px;
    font-weight: 500;
    text-decoration: none;
  }

  .track-form,
  .row-2,
  .grid-4,
  .grid-2,
  .meta-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }

  .lead {
    font-size: 18px;
  }

  .auth-card {
    padding: 24px;
  }

  .map-copy {
    padding: 28px 22px 32px;
  }

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

  .pin .label {
    font-size: 12px;
    padding: 5px 8px;
  }
}
