:root {
  --orange: #ff912c;
  --orange-soft: rgba(255, 145, 44, 0.18);
  --green: #2fd46f;
  --green-soft: rgba(47, 212, 111, 0.18);
  --cyan: #70d6ff;
  --blue: #8fb4d2;
  --dark: #071523;
  --navy: #132235;
  --panel: rgba(92, 113, 134, 0.46);
  --panel-strong: rgba(99, 119, 140, 0.72);
  --line: rgba(47, 212, 111, 0.38);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.54);
  --shadow: 0 26px 90px rgba(3, 9, 18, 0.46);
  --radius: 32px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--dark); }
body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 180, 210, 0.28), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(47, 212, 111, 0.18), transparent 34%),
    linear-gradient(180deg, #91adc5 0%, #394b5d 34%, #102033 70%, #06111f 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  height: 56px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(28, 43, 60, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.16);
}

.nav-back,
.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: rgba(255,255,255,0.10);
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-back:hover,
.nav-link:hover { transform: translateY(-1px); background: rgba(255,255,255,0.18); }
.nav-back img { width: 24px; height: 24px; border-radius: 8px; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 126px 0 70px;
  overflow: hidden;
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(141, 171, 196, 0.20), rgba(7, 21, 35, 0.86)),
    url("../images/map-bg.png") center / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
}
.hero-glow-green {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 200px;
  background: rgba(47, 212, 111, 0.24);
}
.hero-glow-orange {
  width: 300px;
  height: 300px;
  right: -80px;
  top: 110px;
  background: rgba(255, 145, 44, 0.26);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 196px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-soft);
  font-weight: 800;
}
.app-badge img { width: 42px; height: 42px; border-radius: 13px; }
.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1 {
  margin-top: 12px;
  font-size: clamp(62px, 10vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.09em;
}
h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 27px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  max-width: 640px;
  margin-top: 22px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.hero-body,
.section-head p,
.ready p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}
.hero-body { margin-top: 20px; max-width: 660px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn-primary,
.btn-secondary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  color: #241000;
  background: linear-gradient(135deg, #ffbd5a, var(--orange));
  box-shadow: 0 18px 45px rgba(255, 145, 44, 0.30);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
}
.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); }

.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-phone {
  position: relative;
  z-index: 2;
  width: min(480px, 82vw);
  margin: 0 auto;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.floating {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.24));
  animation: float 7s ease-in-out infinite;
}
.floating-globe { width: 180px; left: -14px; bottom: 52px; }
.floating-plane { width: 142px; right: 26px; top: 20px; animation-delay: -2s; }
.floating-chart { width: 150px; right: 0; bottom: 80px; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.map-story,
.features,
.ready,
.cta {
  position: relative;
  padding: 90px 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-head h2 { margin: 12px 0 16px; }
.section-head.compact { max-width: 620px; }

.map-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}
.map-showcase img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  mix-blend-mode: screen;
  animation: globeDrift 7.5s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes globeDrift {
  0%, 100% { transform: translateY(0) rotate(-1.4deg) scale(1); }
  50% { transform: translateY(-14px) rotate(1.4deg) scale(1.035); }
}
.map-callout {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(390px, calc(100% - 48px));
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(20, 40, 55, 0.76);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--text-soft);
  font-weight: 800;
  line-height: 1.45;
}
.callout-dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(47, 212, 111, 0.20);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(47, 212, 111, 0.35);
  background:
    linear-gradient(180deg, rgba(134, 153, 172, 0.50), rgba(37, 55, 73, 0.54)),
    rgba(42, 61, 78, 0.72);
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}
.feature-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
}
.feature-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: rgba(255,255,255,0.08);
}
.feature-card:not(.wide) img {
  height: 260px;
  margin-bottom: 22px;
}
.feature-card.wide img { max-height: 390px; }
.feature-aside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-aside-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-aside-item strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}
.feature-aside-item span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.feature-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feature-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.ready-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 145, 44, 0.36);
  background: rgba(18, 34, 52, 0.54);
  box-shadow: var(--shadow);
}
.ready h2 { margin: 12px 0 18px; }
.tool-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tool-list span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  color: var(--text);
  font-weight: 900;
  line-height: 1.28;
}

.cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 212, 111, 0.36);
  background:
    radial-gradient(circle at 10% 50%, rgba(47, 212, 111, 0.22), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255, 145, 44, 0.25), transparent 32%),
    rgba(24, 42, 58, 0.74);
  box-shadow: var(--shadow);
}
.cta-card img { width: 92px; height: 92px; border-radius: 24px; }
.cta-card h2 { margin-top: 8px; }

.footer {
  padding: 36px 0 44px;
  color: var(--text-soft);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
}
.footer-logo img { width: 32px; height: 32px; border-radius: 10px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 14px; }

.privacy-body {
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 212, 111, 0.18), transparent 32%),
    linear-gradient(180deg, #8eaac2 0%, #33485d 28%, #0b1728 100%);
}
.privacy-header {
  position: relative;
  overflow: hidden;
  padding: 140px 0 70px;
}
.privacy-header .container { position: relative; z-index: 2; }
.privacy-header h1 {
  margin-top: 12px;
  font-size: clamp(48px, 8vw, 92px);
}
.privacy-header p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 18px;
}
.privacy-section { padding: 0 0 90px; }
.privacy-card {
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 212, 111, 0.36);
  background: rgba(22, 39, 56, 0.78);
  box-shadow: var(--shadow);
}
.privacy-card h2 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card p,
.privacy-card li {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}
.privacy-card ul { padding-left: 22px; }
.privacy-card strong { color: var(--text); }
.privacy-card a {
  color: #a9f8c4;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-grid,
  .ready-grid,
  .feature-card.wide {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: auto; }
  .floating-globe { left: 0; bottom: -20px; width: 128px; }
  .floating-plane { right: 4px; top: 6px; width: 110px; }
  .floating-chart { width: 118px; bottom: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .feature-aside { grid-template-columns: 1fr; }
  .tool-list { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-card img { margin: 0 auto; }
  .cta-card .btn-primary { width: 100%; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { top: 12px; width: calc(100% - 24px); }
  .nav-back,
  .nav-link { padding: 0 12px; font-size: 14px; }
  .hero { padding-top: 100px; }
  h1 { font-size: 66px; }
  .hero-subtitle { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .btn-primary,
  .btn-secondary { width: 100%; }
  .hero-phone { width: 100%; border-radius: 28px; }
  .map-story,
  .features,
  .ready,
  .cta { padding: 56px 0; }
  .feature-card,
  .ready-grid,
  .cta-card,
  .privacy-card { border-radius: 24px; }
  .feature-card:not(.wide) img { height: auto; }
  .map-callout { position: static; width: auto; margin: 14px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .map-showcase img,
  .floating {
    animation: none;
  }
}
