/* NavM8 Global — Waze-adjacent: round, bright, friendly, minimal chrome */

:root {
  --ink: #1b2559;
  --ink-soft: #5a6499;
  --sky: #6ec8ff;
  --sky-deep: #3aa8f0;
  --sun: #ffb84d;
  --sun-deep: #ff9f1a;
  --mint: #7ce7c8;
  --paper: #f6f9ff;
  --white: #ffffff;
  --line: rgba(27, 37, 89, 0.08);
  --shadow: 0 18px 50px rgba(27, 73, 120, 0.12);
  --shadow-soft: 0 10px 30px rgba(27, 37, 89, 0.08);
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}

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

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--sky) 0%, var(--sky-deep) 55%, var(--sun) 100%);
  box-shadow: 0 6px 16px rgba(58, 168, 240, 0.35);
}

.logo__suffix {
  font-weight: 600;
  color: var(--sky-deep);
}

.nav {
  display: none;
  gap: 18px;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.header__actions {
  display: none;
  gap: 10px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin-inline: auto;
  border-radius: 99px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-weight: 500;
  color: var(--ink);
  padding: 10px 4px;
}

@media (min-width: 900px) {
  .nav,
  .header__actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--sky-deep) 0%, #2b8fd8 100%);
  box-shadow: 0 8px 22px rgba(58, 168, 240, 0.35);
}

.btn--secondary {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(27, 37, 89, 0.06);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--ink);
}

.btn--lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -40% -20% auto;
  height: 85%;
  background: radial-gradient(ellipse at 20% 20%, rgba(110, 200, 255, 0.45), transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(255, 184, 77, 0.28), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(124, 231, 200, 0.2), transparent 45%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px 8px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

.flag {
  font-size: 1.1rem;
  line-height: 1;
}

.eyebrow__link {
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 700;
}

.eyebrow__link:hover {
  text-decoration: underline;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-soft {
  color: var(--sky-deep);
}

.lede {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 34em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-strip li {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.hero__card--shot {
  max-width: 100%;
}

.phone-frame {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 12px 12px 14px;
  background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 45%, #e8faf3 100%);
  border-radius: 36px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.phone-frame--large {
  width: min(100%, 320px);
  padding: 14px 14px 16px;
  border-radius: 40px;
}

.phone-frame__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(27, 37, 89, 0.18);
}

.phone-frame--large .phone-frame__img {
  border-radius: 28px;
}

.section--use-case {
  padding-top: 56px;
}

.use-case {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .use-case {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.use-case__copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
}

.use-case__copy > p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.use-case__media {
  margin: 0;
  text-align: center;
}

.use-case__caption {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 340px;
  margin-inline: auto;
}

.pill-label {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d4a3a;
  background: var(--mint);
  border-radius: var(--radius-pill);
}

.section__head--wide {
  max-width: 720px;
}

.map-card {
  width: min(100%, 380px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.map-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: #0d4a3a;
}

.pill--live {
  animation: pulse 2.4s ease-in-out infinite;
}

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

.map-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.map-card__map {
  position: relative;
  height: 220px;
  background: linear-gradient(160deg, #e8f4ff 0%, #dff6ef 100%);
}

.route-line {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 62%;
  height: 52%;
  border: 6px solid var(--white);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  box-shadow: 0 0 0 4px rgba(58, 168, 240, 0.35);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(27, 37, 89, 0.2);
}

.pin--you {
  left: 16%;
  top: 58%;
  background: var(--sky-deep);
}

.pin--dest {
  right: 22%;
  top: 24%;
  background: var(--sun-deep);
}

.map-card__footer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.map-card__footer strong {
  font-size: 1.25rem;
  color: var(--ink);
}

.map-card__caption {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 280px;
  font-weight: 500;
}

.section {
  padding: 72px 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(230, 244, 255, 0.45));
}

.analytics-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

@media (min-width: 720px) {
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.analytics-callout {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.analytics-callout__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.analytics-callout__lede {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.analytics-callout__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-top: 16px;
  border-top: 1px dashed rgba(58, 168, 240, 0.35);
}

.section__head {
  max-width: 560px;
  margin-bottom: 36px;
}

.section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--ink-soft);
}

.stats {
  padding: 36px 0 16px;
}

.stats__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 700px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.stat__num {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sky-deep);
  line-height: 1.15;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cards {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.card--lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--featured {
  border: 2px solid rgba(58, 168, 240, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.chip--accent {
  background: linear-gradient(180deg, #fff8ed 0%, #ffffff 100%);
  border-color: rgba(255, 159, 26, 0.35);
  color: #6b4423;
}

.lede strong {
  color: var(--ink);
  font-weight: 700;
}

.split {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.split__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  letter-spacing: -0.02em;
}

.split__copy > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.checklist {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--mint), #4fd4a5);
  box-shadow: 0 2px 6px rgba(79, 212, 165, 0.35);
}

.split__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(58, 168, 240, 0.35);
}

.mini-panel__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.mini-panel__value {
  font-weight: 600;
  font-size: 1.05rem;
}

.section--cta {
  padding-bottom: 88px;
}

.cta {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 860px) {
  .cta {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
  }
}

.cta__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.cta__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.cta__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(58, 168, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(110, 200, 255, 0.25);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.form .btn {
  grid-column: 1 / -1;
}

.form__note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 600px) {
  .form {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 0;
}

.footer a {
  color: var(--sky);
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.logo--footer .logo__text {
  color: var(--white);
}

.logo--footer .logo__suffix {
  color: var(--sky);
}

.footer__tag {
  margin: 14px 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer__cols {
  display: grid;
  gap: 28px;
}

@media (min-width: 500px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__h {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.footer__address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__links a:hover {
  color: var(--white);
}
