:root {
  --purple-950: #24103f;
  --purple-900: #321354;
  --purple-800: #442071;
  --purple-700: #5b2bbf;
  --purple-600: #7040d4;
  --purple-100: #eee8fb;
  --purple-50: #f8f5fd;
  --ink: #19151f;
  --muted: #675f70;
  --line: #e7e1eb;
  --white: #fff;
  --page: #fcfbfd;
  --shadow: 0 24px 70px rgba(50, 19, 84, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(800px, calc(100% - 40px)); }
.skip-link { position: fixed; left: 20px; top: -80px; background: var(--white); padding: 12px 16px; z-index: 1000; }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 253, .92);
  border-bottom: 1px solid rgba(231, 225, 235, .75);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: 11px; align-items: center; font-weight: 800; letter-spacing: .13em; }
.brand-mark {
  width: 36px; height: 36px; display: grid; place-items: center;
  color: white; background: var(--purple-700); border-radius: 10px;
  font-weight: 850; letter-spacing: 0;
}
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .94rem; }
.main-nav > a:not(.button) { color: #4f4856; }
.main-nav > a:not(.button):hover { color: var(--purple-700); }
.menu-button { display: none; border: 0; background: none; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border: 0; border-radius: 12px;
  color: white; background: var(--purple-700); font-weight: 750;
  box-shadow: 0 10px 24px rgba(91, 43, 191, .22);
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--purple-800); }
.button-small { min-height: 42px; padding: 0 18px; }
.text-link { font-weight: 760; color: var(--purple-800); }
.text-link span { margin-left: 6px; }

.hero { padding: 92px 0 105px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 78px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--purple-700); font-size: .77rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.light { color: #d8c9fb; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3.05rem, 6.2vw, 5.65rem); line-height: .98; letter-spacing: -.055em; font-weight: 790; }
h1 span { color: var(--purple-700); }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.045em; }
h3 { line-height: 1.25; }
.hero-text { max-width: 660px; margin-bottom: 32px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-note { margin-top: 28px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .91rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4f9d6b; box-shadow: 0 0 0 5px #e5f2e9; }

.dashboard {
  position: relative; padding: 24px; border: 1px solid #e7dff1; border-radius: 28px;
  background: white; box-shadow: var(--shadow);
}
.dashboard::before {
  content: ""; position: absolute; inset: -80px -100px auto auto; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(112, 64, 212, .11); filter: blur(12px); z-index: -1;
}
.dashboard-top, .route-heading, .dashboard-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dashboard-top small, .metrics small, .route-heading small, .next-client small { display: block; color: #81798a; }
.dashboard-top strong { display: block; margin-top: 3px; }
.live { color: #2b7650; background: #e9f7ef; padding: 5px 10px; border-radius: 999px; font-size: .76rem; font-weight: 750; }
.metrics { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metrics article { padding: 18px; border-radius: 17px; background: var(--purple-50); }
.metrics strong { display: block; margin: 6px 0 2px; font-size: 1.4rem; }
.metrics span { color: var(--muted); font-size: .8rem; }
.route-card { padding: 20px; color: white; background: var(--purple-900); border-radius: 20px; }
.route-heading small { color: #c9b9df; }
.route-heading strong { display: block; margin-top: 4px; font-size: 1.12rem; }
.route-heading > span { font-size: .84rem; background: rgba(255,255,255,.12); padding: 6px 9px; border-radius: 8px; }
.route-line { display: flex; align-items: center; margin: 22px 0; }
.route-line i { position: relative; width: 13px; height: 13px; background: white; border-radius: 50%; }
.route-line i:not(:last-child) { margin-right: 26%; }
.route-line i:not(:last-child)::after { content: ""; position: absolute; left: 13px; top: 5px; width: calc(26vw / 2.4); max-width: 110px; height: 2px; background: rgba(255,255,255,.28); }
.route-line i:last-child { background: #a78df0; box-shadow: 0 0 0 6px rgba(167,141,240,.2); }
.client-details { display: grid; gap: 8px; font-size: .84rem; color: #ded4eb; }
.client-details b { color: white; }
.dashboard-bottom { margin-top: 18px; color: #766e7f; font-size: .75rem; }

.growth-section { padding: 112px 0; background: white; text-align: center; }
.growth-section h2 { margin-bottom: 25px; }
.growth-section p { color: var(--muted); font-size: 1.15rem; }
.growth-section .strong-line { margin-top: 26px; color: var(--purple-800); font-weight: 800; }

.connected-section, .features-section, .discovery-section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 9px; color: var(--muted); font-size: 1.06rem; }
.section-heading.compact { grid-template-columns: 1fr; }
.workflow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workflow article { padding: 30px 24px 30px 0; }
.workflow article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.workflow span { color: var(--purple-700); font-size: .75rem; font-weight: 850; }
.workflow h3 { margin: 28px 0 10px; font-size: 1.3rem; }
.workflow p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.route-assisted { padding: 118px 0; color: white; background: var(--purple-950); }
.route-assisted-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 100px; align-items: center; }
.route-assisted h2 { max-width: 680px; margin-bottom: 6px; }
.route-assisted h3 { color: #cbbaf1; font-size: 1.5rem; }
.route-intro { max-width: 630px; color: #cfc7d7; font-size: 1.06rem; }
.check-list { margin: 30px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(255,255,255,.1); color: #eee9f3; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #b99df4; font-weight: 900; }
blockquote { margin: 34px 0 0; padding-left: 22px; border-left: 3px solid #9e77ec; color: white; font-size: 1.24rem; font-weight: 680; }

.phone-frame { max-width: 390px; margin: 0 auto; padding: 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; background: #17111c; box-shadow: 0 30px 70px rgba(0,0,0,.32); }
.phone-speaker { width: 74px; height: 5px; margin: 5px auto 11px; border-radius: 99px; background: #4b414f; }
.phone-screen { overflow: hidden; border-radius: 28px; color: var(--ink); background: #faf9fb; }
.phone-header { display: flex; justify-content: space-between; padding: 20px 20px 14px; background: white; }
.phone-header b { color: var(--purple-700); }
.mini-map { height: 230px; background: #ece8ef; overflow: hidden; }
.mini-map .road { fill: none; stroke: white; stroke-width: 24; }
.mini-map .road.thin { stroke-width: 14; }
.mini-map .route-path { fill: none; stroke: var(--purple-700); stroke-width: 5; stroke-dasharray: 9 7; }
.mini-map circle { fill: var(--purple-700); }
.mini-map .destination { fill: white; stroke: var(--purple-700); stroke-width: 7; }
.next-client { padding: 20px 20px 5px; }
.next-client h4 { margin: 3px 0; font-size: 1.15rem; }
.next-client p { color: var(--muted); font-size: .86rem; }
.client-tags { display: flex; gap: 8px; padding: 0 20px 18px; }
.client-tags span { padding: 6px 9px; border-radius: 8px; color: var(--purple-800); background: var(--purple-100); font-size: .74rem; font-weight: 720; }
.phone-screen button { width: calc(100% - 40px); margin: 0 20px 20px; padding: 13px; border: 0; border-radius: 11px; color: white; background: var(--purple-700); font-weight: 760; }

.discovery-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.map-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.map-toolbar, .map-result { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.map-toolbar { font-size: .85rem; font-weight: 750; }
.map-toolbar span:last-child { color: var(--purple-700); }
.map-canvas { position: relative; height: 330px; overflow: hidden; background: #efedf1; }
.map-road { position: absolute; display: block; height: 22px; border-radius: 99px; background: white; transform-origin: center; }
.road-a { width: 530px; left: -55px; top: 150px; transform: rotate(-18deg); }
.road-b { width: 440px; left: 60px; top: 100px; transform: rotate(63deg); }
.road-c { width: 480px; left: -60px; top: 245px; transform: rotate(9deg); }
.pin, .current-location { position: absolute; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 4px 10px rgba(50,19,84,.24); }
.pin { width: 24px; height: 24px; background: var(--purple-700); }
.pin::after { content: ""; position: absolute; width: 8px; height: 8px; left: 8px; top: 8px; border-radius: 50%; background: white; }
.pin-1 { left: 20%; top: 32%; } .pin-2 { left: 62%; top: 24%; } .pin-3 { left: 72%; top: 66%; } .pin-4 { left: 34%; top: 74%; }
.current-location { width: 30px; height: 30px; left: 48%; top: 46%; border: 6px solid white; background: #3f8e66; }
.map-result { align-items: flex-start; flex-direction: column; gap: 1px; }
.map-result span { color: var(--muted); font-size: .83rem; }
.discovery-grid h2 { margin-bottom: 24px; }
.discovery-grid p { color: var(--muted); font-size: 1.04rem; }
.highlight-copy { padding-left: 20px; border-left: 3px solid var(--purple-700); color: var(--ink) !important; font-weight: 690; }

.features-section { background: white; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid article { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: .2s ease; }
.feature-grid article:hover { transform: translateY(-4px); border-color: #d6c9ea; box-shadow: 0 16px 36px rgba(50,19,84,.08); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--purple-700); background: var(--purple-100); font-weight: 850; }
.feature-grid h3 { margin: 38px 0 10px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .91rem; }

.closing-section { padding: 115px 0; color: white; background: #332043; }
.closing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.closing-grid h2 { margin-bottom: 0; }
.closing-list p { padding: 12px 0; margin: 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #e8e1ec; }

.contact-section { padding: 110px 0; }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 58px; border: 1px solid #dfd4ea; border-radius: 28px; background: var(--purple-50); }
.contact-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.contact-card > div > p:last-child { color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 6px; color: #4d4654; font-size: .82rem; font-weight: 720; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #d9cfe1; border-radius: 10px; background: white; padding: 12px 13px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--purple-700); box-shadow: 0 0 0 3px rgba(91,43,191,.1); }
.contact-form .full { grid-column: 1 / -1; }
.contact-form small { grid-column: 1 / -1; color: var(--muted); }
.contact-form small a { color: var(--purple-700); font-weight: 750; }

footer { padding: 64px 0 26px; color: #cfc8d5; background: #17131b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 50px; }
.footer-brand { color: white; }
.footer-grid p { max-width: 420px; margin-top: 20px; color: #aaa1b0; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { margin-bottom: 8px; color: white; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 22px; border-top: 1px solid #302a34; font-size: .78rem; }

@media (max-width: 960px) {
  .hero-grid, .route-assisted-grid, .discovery-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .dashboard { max-width: 650px; }
  .route-assisted-grid { gap: 70px; }
  .phone-frame { width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .workflow article:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 40px; gap: 35px; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 66px; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute; left: 14px; right: 14px; top: 72px; display: none;
    padding: 18px; flex-direction: column; align-items: stretch; gap: 8px;
    border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 8px; }
  .hero { padding: 70px 0 78px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .dashboard { padding: 16px; border-radius: 20px; }
  .metrics { grid-template-columns: 1fr; }
  .route-line i:not(:last-child)::after { width: 70px; }
  .growth-section, .connected-section, .features-section, .discovery-section, .contact-section { padding: 78px 0; }
  .workflow { grid-template-columns: 1fr; }
  .workflow article, .workflow article + article { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .workflow article:first-child { border-top: 0; }
  .route-assisted { padding: 85px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 0; }
  .closing-section { padding: 80px 0; }
  .closing-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-card { padding: 28px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .contact-form small { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}
