:root {
  --navy: #0a1b3d;
  --blue: #0d6dff;
  --sky: #eaf3ff;
  --light: #f8fafc;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d6b82;
  --line: #dbe4f0;
  --green: #22c55e;
  --green-bg: #eafaf0;
  --shadow: 0 18px 48px rgba(10, 27, 61, 0.12);
  --deep-shadow: 0 28px 70px rgba(10, 27, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  width: 190px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(10, 27, 61, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(10, 27, 61, 0.2);
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.button.blue {
  background: var(--blue);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.map-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100vw - 1160px) / 2)) 64px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.88) 52%, rgba(248, 250, 252, 0.72) 100%),
    url("/assets/brand/background-hero-light.svg") center / cover no-repeat;
}

.map-hero::after,
.map-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(13, 109, 255, 0.055), transparent 22%),
    radial-gradient(circle at 82% 74%, rgba(13, 109, 255, 0.05), transparent 24%);
  pointer-events: none;
}

.map-hero > *,
.map-soft > * {
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.quiet-note {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-card::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.status-inner {
  padding: 26px;
}

.status-meta {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.status-type {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.status-address,
.status-time {
  color: var(--muted);
  font-weight: 700;
}

.participant-list {
  display: grid;
  gap: 10px;
}

.participant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.participant strong {
  color: var(--navy);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.pill.confirmed {
  background: var(--green-bg);
  color: #15803d;
}

.pill.attention {
  background: #fff4e5;
  color: #9a5300;
}

.green-light {
  margin: 22px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-bg);
  color: #166534;
  font-weight: 900;
}

.strong-line {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.section {
  position: relative;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

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

.map-soft {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    url("/assets/brand/background-section-light.svg") center / cover no-repeat;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 19px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 27, 61, 0.05);
}

.card h3 {
  color: var(--navy);
  font-size: 21px;
}

.card p,
.card li {
  color: var(--muted);
}

.linked-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.linked-card:hover {
  border-color: rgba(13, 109, 255, 0.42);
  box-shadow: 0 14px 34px rgba(10, 27, 61, 0.1);
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding-left: 28px;
  position: relative;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  position: relative;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 12px 30px rgba(10, 27, 61, 0.06);
}

.step + .step::after {
  content: "";
  position: absolute;
  left: 41px;
  top: -15px;
  width: 2px;
  height: 15px;
  background: repeating-linear-gradient(to bottom, rgba(13, 109, 255, 0.5) 0 3px, transparent 3px 7px);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.sms-box {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.sms-message {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #edf5ff;
  font-weight: 700;
}

.sms-message.reply {
  margin-left: 38px;
  background: rgba(34, 197, 94, 0.16);
}

.phone-mockup .sms-message.reply {
  color: #0f5132;
  background: #dff7e9;
}

.sms-message.light {
  background: #eef5ff;
  color: var(--navy);
}

.flow-visual {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.flow-visual span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 27, 61, 0.05);
}

.status-pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}

.hero-product-image-stage {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 720px;
  margin: 0;
}

.hero-product-image-stage::before {
  content: "";
  position: absolute;
  inset: 11% 5% 4% 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(13, 109, 255, 0.22), transparent 62%);
  filter: blur(22px);
  transform: translateY(16px);
  pointer-events: none;
}

.hero-product-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 26px 44px rgba(10, 27, 61, 0.16));
}

.product-stage {
  position: relative;
  min-height: 520px;
}

.location-ripple {
  position: absolute;
  right: 24px;
  top: 10px;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(13, 109, 255, 0.14) 0 32%, transparent 33%),
    radial-gradient(circle, transparent 0 50%, rgba(13, 109, 255, 0.09) 51% 52%, transparent 53%),
    radial-gradient(circle, transparent 0 68%, rgba(13, 109, 255, 0.08) 69% 70%, transparent 71%);
}

.clock-pin-mark {
  width: 92px;
  height: auto;
  color: var(--blue);
  filter: drop-shadow(0 18px 26px rgba(13, 109, 255, 0.2));
}

.phone-mockup,
.dashboard-mockup {
  position: absolute;
  border: 1px solid rgba(219, 228, 240, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(10px);
}

.phone-mockup {
  left: 0;
  top: 126px;
  width: 204px;
  padding: 16px;
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 14px 0 0 rgba(13, 109, 255, 0.28), 28px 0 0 rgba(13, 109, 255, 0.15);
}

.sms-thread {
  display: grid;
  gap: 10px;
}

.dashboard-mockup {
  right: 0;
  bottom: 0;
  width: min(334px, 68%);
  padding: 12px;
  z-index: 2;
}

.dashboard-mockup .status-card {
  box-shadow: none;
}

.dashboard-mockup .status-inner {
  padding: 20px;
}

.mini-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 8px 2px;
}

.domino-visual {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.domino-visual span {
  padding: 12px 14px;
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(10, 27, 61, 0.06);
}

.green-card {
  border-color: rgba(34, 197, 94, 0.35);
  background: var(--green-bg);
}

.dark-map {
  background:
    linear-gradient(180deg, rgba(10, 27, 61, 0.94), rgba(6, 17, 39, 0.98)),
    url("/assets/brand/background-footer-dark.svg") center / cover no-repeat;
  color: var(--white);
}

.dark-map h2,
.dark-map h3 {
  color: var(--white);
}

.dark-map p,
.dark-map li {
  color: #d7e3f8;
}

.dark-map .eyebrow {
  color: #76a8ff;
}

.dark-map .strong-line {
  color: var(--white);
}

.dark-map .card {
  background: rgba(255, 255, 255, 0.98);
}

.dark-map .card h3 {
  color: var(--navy);
}

.dark-map .card p,
.dark-map .card li {
  color: var(--muted);
}

.dark-map .green-card {
  background: rgba(234, 250, 240, 0.96);
}

.dark-map .green-card h3 {
  color: var(--navy);
}

.dark-map .green-card li {
  color: var(--muted);
}

.section-cta {
  margin-top: 26px;
}

.page-hero.split {
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.page-visual {
  min-width: 0;
}

.industry-visual {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.industry-visual svg {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.industry-visual p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.industry-product {
  position: relative;
  display: grid;
  gap: 16px;
}

.industry-product .status-card {
  box-shadow: var(--deep-shadow);
}

.mini-map-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.96)),
    url("/assets/brand/background-section-light.svg") center / cover no-repeat;
  box-shadow: 0 14px 34px rgba(10, 27, 61, 0.08);
}

.mini-map-card .clock-pin-mark {
  position: absolute;
  right: 34px;
  top: 24px;
  width: 78px;
}

.mini-route {
  position: absolute;
  left: 34px;
  right: 88px;
  top: 88px;
  height: 58px;
  border-top: 1.5px dashed rgba(13, 109, 255, 0.46);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(13, 109, 255, 0.1);
}

.map-dot.one { left: 42px; top: 84px; }
.map-dot.two { left: 132px; top: 70px; }
.map-dot.three { left: 220px; top: 102px; }

.cta-band {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 61, 0.96), rgba(6, 17, 39, 0.98)),
    url("/assets/brand/background-footer-dark.svg") center / cover no-repeat;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: #cbd7ee;
}

.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 48px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.legal {
  max-width: 840px;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.97)),
    url("/assets/brand/background-legal-light.svg") center / cover no-repeat;
  box-shadow: 0 18px 48px rgba(10, 27, 61, 0.08);
}

.legal h2 {
  margin-top: 34px;
  font-size: 30px;
}

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

.site-footer {
  padding: 44px 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 61, 0.98), rgba(6, 17, 39, 1)),
    url("/assets/brand/background-footer-dark.svg") center / cover no-repeat;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.site-footer p {
  color: #d7e3f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: #d7e3f8;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .map-hero {
    padding: 48px 16px 52px;
  }

  .product-stage {
    min-height: 610px;
  }

  .hero-product-image-stage {
    justify-self: center;
    max-width: 620px;
  }

  .page-hero.split {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid.two,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .flow-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo {
    width: 164px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .status-inner,
  .card {
    padding: 20px;
  }

  .product-stage {
    min-height: auto;
  }

  .hero-product-image-stage {
    max-width: 100%;
  }

  .hero-product-image {
    border-radius: 18px;
  }

  .phone-mockup,
  .dashboard-mockup {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .phone-mockup {
    margin-bottom: 16px;
  }

  .location-ripple {
    right: -32px;
    top: -36px;
    width: 220px;
    height: 220px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }

  .step::before {
    width: 38px;
    height: 38px;
  }
}
