:root {
  --navy: #102840;
  --navy-deep: #071a2a;
  --teal: #0098a8;
  --teal-dark: #004060;
  --green: #80b850;
  --white: #f8f8f8;
  --paper: #ffffff;
  --muted: #637083;
  --line: #dce8ec;
  --shadow: 0 24px 70px rgba(16, 40, 64, 0.14);
}

* {
  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(--navy);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(248, 248, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 40, 64, 0.08);
}

.brand img,
.footer img {
  display: block;
  width: min(260px, 44vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: rgba(16, 40, 64, 0.78);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 152, 168, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: #e9f2f4;
}

.button.light {
  color: var(--navy);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100vh - 84px);
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
}

p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
}

.stars {
  color: var(--green);
  letter-spacing: 0;
}

.hero-visual {
  position: relative;
}

.dashboard {
  position: relative;
  max-width: 610px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(16, 40, 64, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  padding: 6px 0 18px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d9e7ea;
}

.map-card {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 40, 64, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 40, 64, 0.05) 1px, transparent 1px),
    #f3f8f8;
  background-size: 42px 42px;
  overflow: hidden;
}

.route-line {
  position: absolute;
  inset: 64px 64px 74px 72px;
  border: 10px solid var(--teal);
  border-left-color: transparent;
  border-bottom-color: var(--green);
  border-radius: 38px;
  transform: rotate(-7deg);
}

.pin {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 5px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(16, 40, 64, 0.22);
}

.pin.start {
  left: 68px;
  top: 78px;
}

.pin.mid {
  right: 148px;
  top: 130px;
  background: var(--teal);
}

.pin.end {
  right: 72px;
  bottom: 72px;
  background: var(--navy);
}

.delivery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.delivery-list div,
.metric-panel div,
.testimonial-grid article,
.stats-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.delivery-list div {
  padding: 16px;
}

.delivery-list span,
.metric-panel span,
.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.delivery-list strong {
  display: block;
  margin-top: 4px;
}

.logo-band,
.feature-split,
.mission,
.connect-section,
.proof,
.faq,
.testimonials,
.stats,
.footer {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.logo-band {
  text-align: center;
  background: #fff;
}

.logo-band p {
  max-width: 720px;
  margin: 18px auto 34px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.integration-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.feature-split p {
  max-width: 690px;
  margin: 22px 0 28px;
}

.metric-panel {
  display: grid;
  gap: 16px;
}

.metric-panel div {
  padding: 28px;
}

.metric-panel strong,
.stats-grid strong {
  display: block;
  color: var(--teal);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-copy {
  display: grid;
  gap: 18px;
}

.mission-copy p {
  margin: 0;
}

.proof {
  background: var(--navy);
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.proof-card p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-card .eyebrow {
  color: var(--green);
}

.proof-preview {
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) 1fr;
  align-items: center;
  gap: 24px;
}

.phone {
  width: min(240px, 100%);
  aspect-ratio: 0.55;
  padding: 16px;
  border-radius: 32px;
  background: #061421;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.phone-screen {
  display: grid;
  height: 100%;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 22px;
  background: #fff;
  color: var(--navy);
  text-align: center;
}

.checkmark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 42px;
  font-weight: 900;
}

.phone-screen p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-preview ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-preview li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  background: #fff;
}

.connect-copy {
  text-align: center;
}

.connect-copy h2 {
  max-width: 680px;
  margin-inline: auto;
  color: #05070a;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.12;
}

.connect-copy p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #2f3138;
  font-size: clamp(17px, 2vw, 21px);
}

.connect-orbit {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.orbit-ring {
  position: relative;
  width: min(460px, 82vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(128, 184, 80, 0.26) 0 31%, rgba(0, 152, 168, 0.17) 32% 61%, rgba(0, 152, 168, 0.1) 62% 100%);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1f1715;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-style: italic;
  transform: translate(-50%, -50%);
}

.orbit-card {
  position: absolute;
  display: grid;
  min-width: 86px;
  min-height: 76px;
  place-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 40, 64, 0.12);
  color: #333942;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.chownow {
  left: 18%;
  top: -4%;
}

.grubhub {
  right: 7%;
  top: 0;
  color: #ff7b00;
}

.doordash {
  right: -9%;
  top: 36%;
  color: #ff3008;
}

.ubereats {
  right: 7%;
  bottom: -4%;
  color: #17331f;
  font-size: 24px;
  line-height: 0.92;
}

.toast {
  left: 17%;
  bottom: -4%;
  color: #ff5338;
}

.square {
  left: -9%;
  top: 36%;
  color: #676b73;
}

.connect-statement {
  grid-column: 1 / -1;
  max-width: 1050px;
  margin: 18px auto 0;
  color: #05070a;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.08;
  text-align: center;
}

.connect-statement span {
  color: #07896d;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--teal-dark);
}

.faq {
  max-width: 960px;
  margin: 0 auto;
}

.faq h2 {
  margin-bottom: 28px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin: -6px 0 26px;
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.testimonial-grid article {
  padding: 26px;
}

.testimonial-grid p {
  min-height: 112px;
  margin: 18px 0;
  color: var(--navy);
}

.testimonial-grid small {
  display: block;
  color: var(--muted);
}

.stats {
  text-align: center;
}

.stats h2 {
  max-width: 860px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 940px;
  margin: 36px auto 0;
}

.stats-grid div {
  padding: 32px 18px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  background: var(--navy-deep);
  color: #fff;
}

.footer p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address a,
address span {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .feature-split,
  .mission,
  .connect-section,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .connect-orbit {
    min-height: 390px;
  }

  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: min(210px, 58vw);
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .delivery-list,
  .proof-preview,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .connect-orbit {
    min-height: 320px;
  }

  .orbit-ring {
    width: min(320px, 78vw);
  }

  .orbit-core {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }

  .orbit-card {
    min-width: 70px;
    min-height: 58px;
    font-size: 11px;
  }

  .ubereats {
    font-size: 18px;
  }

  .cta-strip,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
