:root {
  --bg: #050a14;
  --bg-elevated: #0a1220;
  --text: #e8f4ff;
  --muted: #7a93a8;
  --cyan: #00d4ff;
  --cyan-dim: #00a8e0;
  --lime: #b8ff2e;
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Manrope', system-ui, sans-serif;
  --display: 'Outfit', 'Manrope', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(0, 212, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(184, 255, 46, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 90%, rgba(0, 168, 224, 0.12), transparent 55%),
    var(--bg);
  animation: atmosphereShift 18s ease-in-out infinite alternate;
}

@keyframes atmosphereShift {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(12deg);
  }
}

.nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px 0;
  border: none;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: #041018;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 212, 255, 0.28);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 12px;
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0 0 100px;
  min-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: heroIn 0.8s ease both;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px 32px;
  flex: 0 0 auto;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(5, 10, 20, 0.55) 82%, var(--bg) 100%),
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(0, 212, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 35% at 18% 55%, rgba(184, 255, 46, 0.08), transparent 55%);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0), var(--bg) 85%);
}

.hero-globes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.globe {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(10px);
  animation: globeDrift 16s ease-in-out infinite alternate;
}

.globe svg {
  width: 100%;
  height: 100%;
  display: block;
}

.globe-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: -4%;
  top: 8%;
  color: rgba(0, 212, 255, 0.85);
  filter: blur(14px) drop-shadow(0 0 40px rgba(0, 212, 255, 0.25));
}

.globe-b {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  left: -2%;
  top: 48%;
  color: rgba(184, 255, 46, 0.75);
  filter: blur(16px) drop-shadow(0 0 36px rgba(184, 255, 46, 0.18));
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

@keyframes globeDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(-2%, 3%, 0) rotate(8deg) scale(1.04);
  }
}

.hero-caption {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.brand-mark {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  background: linear-gradient(105deg, #fff 35%, var(--cyan) 78%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.lead {
  margin: 18px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.link-quiet {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.link-quiet:hover {
  color: var(--lime);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.5;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-side {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 18ch;
  text-align: right;
}

.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps li {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(15, 24, 36, 0.55);
}

.step-num {
  display: block;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: var(--display);
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dest {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(15, 24, 36, 0.65);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.dest:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.08);
}

.dest-flag {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dest strong {
  display: block;
  font-size: 16px;
}

.dest span {
  color: var(--muted);
  font-size: 13px;
}

.dest-go {
  color: var(--cyan) !important;
  font-weight: 700;
  font-size: 13px;
}

.trust {
  text-align: center;
}

.trust-list {
  list-style: none;
  margin: 36px auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 960px;
}

.trust-list li {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10, 18, 32, 0.7);
}

.trust-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
}

.trust-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  border-top: none;
  box-shadow: inset 0 1px 0 transparent;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(0.4px);
  opacity: 0.7;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--display);
}

.footer-brand img {
  border-radius: 8px;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-copy {
    padding: 40px 24px 24px;
  }

  .globe-a {
    width: 260px;
    height: 260px;
    right: -18%;
    top: 12%;
    filter: blur(18px);
    opacity: 0.4;
  }

  .globe-b {
    width: 180px;
    height: 180px;
    left: -16%;
    top: 55%;
    filter: blur(20px);
    opacity: 0.35;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .steps,
  .dest-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .section-side {
    text-align: left;
  }

  .footer-links {
    margin-left: 0;
    width: 100%;
  }
}
