@font-face {
  font-family: "Onest";
  src: url("../assets/fonts/onest/Onest-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../assets/fonts/onest/Onest-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("../assets/fonts/onest/Onest-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/satoshi/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --ink: #061517;
  --ink-soft: #263d42;
  --muted: #62767a;
  --line: rgba(15, 40, 48, 0.12);
  --line-strong: rgba(15, 40, 48, 0.18);
  --teal: #3fe0c5;
  --teal-dark: #1f4b5c;
  --mint: #e6fbf6;
  --cream: #f1fbfc;
  --coral: #d8634f;
  --gold: #f2c14e;
  --green: #4f9f70;
  --plum: #8e5c66;
  --shadow-soft: 0 24px 70px rgba(15, 40, 48, 0.12);
  --shadow-card: 0 14px 34px rgba(15, 40, 48, 0.08);
  --radius-card: 8px;
  --container: 1180px;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

html.download-alert-open,
html.arrival-reveal-open {
  overflow: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  color: var(--ink);
  background: #ffffff;
  font-family: "Onest", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

p,
h1,
h2,
h3,
ol {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  clip-path: none;
  border-radius: var(--radius-card);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 700;
  white-space: normal;
}

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

.section-band {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(15, 40, 48, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 40, 48, 0.08);
}

.nav-shell {
  width: min(var(--container), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  display: block;
  width: 128px;
  height: auto;
}

.footer-brand img {
  width: 122px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #93f0df);
  color: var(--ink);
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(63, 224, 197, 0.24);
}

.brand-name {
  color: var(--ink);
  font-size: 1rem;
}

.brand-product {
  border-left: 1px solid rgba(15, 40, 48, 0.14);
  color: var(--teal-dark);
  padding-left: 10px;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #2d484e;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(63, 224, 197, 0.12);
  color: var(--ink);
  outline: 0;
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  position: relative;
  z-index: 60;
  color: var(--ink);
}

.language-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 251, 0.92)),
    #ffffff;
  color: var(--ink);
  padding: 0 12px 0 10px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 40, 48, 0.1);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-picker.is-open .language-trigger {
  border-color: rgba(63, 224, 197, 0.5);
  box-shadow: 0 0 0 4px rgba(63, 224, 197, 0.12), 0 16px 36px rgba(15, 40, 48, 0.12);
  outline: 0;
}

.language-trigger:hover {
  transform: translateY(-1px);
}

.language-trigger i {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  transition: transform 160ms ease;
}

.language-picker.is-open .language-trigger i {
  transform: rotate(180deg);
}

.language-flag {
  width: 24px;
  height: 18px;
  display: block;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 4px;
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(15, 40, 48, 0.08);
  flex: 0 0 auto;
}

.language-current {
  min-width: 58px;
  text-align: left;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 192px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
  box-shadow: 0 24px 60px rgba(15, 40, 48, 0.16);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 10px;
  text-align: left;
  outline: 0;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-selected {
  background: rgba(63, 224, 197, 0.12);
  color: var(--ink);
}

.language-option.is-selected {
  box-shadow: inset 3px 0 0 var(--teal);
}

.language-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 40, 48, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(15, 40, 48, 0.06);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(63, 224, 197, 0.5);
  outline: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(15, 40, 48, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border: 1px solid rgba(15, 40, 48, 0.13);
  box-shadow: 0 12px 28px rgba(15, 40, 48, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(63, 224, 197, 0.54);
  transform: translateY(-1px);
  outline: 0;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.hero {
  padding-top: 70px;
  padding-bottom: 64px;
  min-height: calc(100svh - 74px);
  background:
    linear-gradient(180deg, #048da0 0%, #05a9ba 66%, #f4fbfc 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 96px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 28px;
}

.hero-copy {
  max-width: 820px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(31, 75, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 8px 12px;
  box-shadow: 0 10px 26px rgba(15, 40, 48, 0.06);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(63, 224, 197, 0.14);
}

h1,
h2,
h3 {
  font-family: "Satoshi", "Onest", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--ink);
  font-size: clamp(2.9rem, 5.6vw, 5rem);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 16px 44px rgba(0, 51, 58, 0.22);
}

.hero-lede {
  max-width: 690px;
  margin: 18px auto 0;
  color: #40585e;
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero .hero-lede {
  color: rgba(255, 255, 255, 0.88);
}

.hero-switch-line {
  min-height: 1.45em;
  margin: 16px auto 0;
  color: #ffffff;
  font-family: "Satoshi", "Onest", system-ui, sans-serif;
  font-size: clamp(1.14rem, 2.1vw, 1.68rem);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 12px 30px rgba(0, 51, 58, 0.18);
  overflow: hidden;
}

.hero-switch-copy {
  display: inline-block;
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: opacity, transform;
}

.hero-switch-copy.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 55, 63, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.hero .hero-status::before {
  display: none;
}

.hero-food-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: opacity, transform;
}

.hero-food-icon i {
  display: block;
  line-height: 1;
}

.hero-food-icon.is-switching {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
}

.address-search {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 24px 58px rgba(0, 54, 62, 0.24);
}

.address-field {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--muted);
  text-align: left;
}

.address-field span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal-dark);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}

.address-field span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-dark);
}

.address-field strong {
  color: #6b7d81;
  font-weight: 700;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-product {
  position: relative;
  width: min(1040px, 100%);
  border: 1px solid rgba(15, 40, 48, 0.12);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  overflow: hidden;
}

.product-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.product-topbar > div {
  display: grid;
  gap: 3px;
}

.product-topbar strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.preview-label {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-topbar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
  font-size: 0.86rem;
  font-weight: 900;
}

.search-pill,
.location-pill,
.app-category-rail span {
  min-height: 42px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: 0 10px 22px rgba(15, 40, 48, 0.05);
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-weight: 700;
}

.search-pill span {
  width: 15px;
  height: 15px;
  border: 2px solid var(--teal-dark);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-pill span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-dark);
  transform: rotate(45deg);
}

.location-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.app-category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 16px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.app-category-rail::-webkit-scrollbar {
  display: none;
}

.app-category-rail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 800;
}

.app-category-rail span:first-child {
  background: var(--ink);
  color: var(--white);
}

.restaurant-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.restaurant-rail span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff, #f8fcfb);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 40, 48, 0.05);
}

.store-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr;
  gap: 14px;
  margin-top: 16px;
}

.store-card {
  position: relative;
  min-height: 160px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.store-featured {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 224px;
  background:
    linear-gradient(135deg, #ffffff 0%, #e9fbff 100%),
    var(--white);
}

.store-art {
  position: relative;
  min-height: 100px;
  border-radius: var(--radius-card);
  background: #f2faf8;
  overflow: hidden;
}

.store-featured .store-art {
  min-height: 178px;
}

.store-art span {
  position: absolute;
  display: block;
}

.jollof-art span:nth-child(1) {
  left: 23%;
  top: 26%;
  width: 54%;
  height: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 43%, var(--coral) 0 16%, transparent 17%),
    radial-gradient(circle at 58% 55%, var(--gold) 0 14%, transparent 15%),
    #ffffff;
  box-shadow: 0 18px 32px rgba(15, 40, 48, 0.12);
}

.jollof-art span:nth-child(2) {
  left: 36%;
  top: 44%;
  width: 34%;
  height: 11%;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-16deg);
}

.jollof-art span:nth-child(3) {
  left: 30%;
  top: 71%;
  width: 40%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.13);
}

.burger-art span:nth-child(1),
.burger-visual span:nth-child(1) {
  left: 22%;
  top: 28%;
  width: 56%;
  height: 22%;
  border-radius: 999px 999px 10px 10px;
  background: #c99458;
}

.burger-art span:nth-child(2),
.burger-visual span:nth-child(2) {
  left: 18%;
  top: 49%;
  width: 64%;
  height: 12%;
  border-radius: 999px;
  background: #234d43;
}

.burger-art span:nth-child(3),
.burger-visual span:nth-child(3) {
  left: 20%;
  top: 63%;
  width: 60%;
  height: 14%;
  border-radius: 8px 8px 999px 999px;
  background: #7a423a;
}

.cafe-art span:nth-child(1),
.cafe-visual span:nth-child(1) {
  left: 30%;
  top: 31%;
  width: 34%;
  height: 36%;
  border-radius: 6px 6px 18px 18px;
  background: #ffffff;
  box-shadow: inset 0 -12px 0 #d8c2a3;
}

.cafe-art span:nth-child(2),
.cafe-visual span:nth-child(2) {
  left: 62%;
  top: 40%;
  width: 18%;
  height: 18%;
  border: 6px solid #ffffff;
  border-left: 0;
  border-radius: 0 20px 20px 0;
}

.cafe-art span:nth-child(3),
.cafe-visual span:nth-child(3) {
  left: 27%;
  top: 70%;
  width: 48%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 75, 92, 0.16);
}

.store-badge,
.launch-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.14);
  color: var(--teal-dark);
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-card h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 2rem;
}

.store-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
}

.store-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.store-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-line span {
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 40, 48, 0.1);
  padding: 6px 9px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.order-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: #0f2830;
  color: var(--white);
  padding: 14px 16px;
}

.order-preview span {
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.14);
  color: var(--teal);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-metrics {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics div {
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 40, 48, 0.06);
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.centered .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.food-browse {
  background: #ffffff;
}

.browse-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.browse-header h2 {
  max-width: 640px;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
}

.browse-header > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.category-rail {
  display: flex;
  gap: 10px;
  margin: 0 -2px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.food-category {
  position: relative;
  flex: 0 0 clamp(214px, 20vw, 244px);
  min-height: 84px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 14px;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.food-category::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: rgba(15, 40, 48, 0.08);
  opacity: 0;
  transition: opacity 170ms ease;
}

.food-category:hover,
.food-category:focus-visible {
  border-color: rgba(63, 224, 197, 0.26);
  background: #fbfdfc;
  box-shadow: 0 14px 30px rgba(15, 40, 48, 0.06);
  outline: 0;
  transform: translateY(-1px);
}

.food-category strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.food-category small {
  display: block;
  margin-top: 4px;
  color: #6a7d80;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.food-promise {
  padding-top: 58px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
}

.promise-shell {
  display: grid;
  gap: 34px;
}

.promise-copy {
  max-width: 760px;
}

.promise-copy h2 {
  max-width: 720px;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.promise-copy p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.promise-route {
  position: relative;
  min-height: 330px;
  overflow: visible;
}

.promise-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.promise-wave-shadow,
.promise-wave-line {
  fill: none;
  stroke-linecap: round;
}

.promise-wave-shadow {
  stroke: rgba(63, 224, 197, 0.1);
  stroke-width: 22;
}

.promise-wave-line {
  stroke: var(--teal-dark);
  stroke-width: 3;
  stroke-dasharray: 3 18;
  animation: promiseDash 12s linear infinite;
}

.promise-node {
  position: absolute;
  width: min(32%, 330px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  padding: 0;
  color: var(--ink);
  isolation: isolate;
}

.promise-node-one {
  left: 2%;
  top: 108px;
}

.promise-node-two {
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
}

.promise-node-three {
  right: 1%;
  top: 128px;
}

.promise-pulse {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal);
  font-size: 25px;
  box-shadow: 0 16px 34px rgba(15, 40, 48, 0.18);
}

.promise-pulse::before,
.promise-pulse::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(63, 224, 197, 0.28);
}

.promise-pulse::after {
  inset: -18px;
  border-color: rgba(63, 224, 197, 0.12);
}

.promise-content {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.promise-content small {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.12);
  color: var(--teal-dark);
  padding: 0 9px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promise-node strong {
  color: var(--ink);
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 1.22rem;
  line-height: 1.12;
}

.promise-node p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.promise-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  margin-top: 5px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 40, 48, 0.08);
}

.promise-action i {
  color: var(--teal-dark);
  font-size: 18px;
}

.promise-menu-action {
  background: #0b1d23;
  color: #ffffff;
}

.promise-menu-action i {
  color: var(--teal);
}

.promise-order-action {
  background: var(--teal);
  color: var(--ink);
  border-color: transparent;
}

.promise-order-action i {
  color: var(--ink);
}

@keyframes promiseDash {
  to {
    stroke-dashoffset: -168;
  }
}

.mini-app-top,
.mini-result-card,
.map-food-card > div,
.trip-card-top,
.direct-preview {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-app-mark,
.mini-result-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--teal);
  color: var(--ink);
  font-size: 23px;
  flex-shrink: 0;
}

.mini-app-top strong,
.mini-result-card strong,
.trip-card-top strong,
.direct-preview strong {
  display: block;
  color: var(--ink);
  line-height: 1.15;
}

.mini-app-top small,
.mini-result-card small,
.trip-card-top small,
.direct-preview small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.mini-search {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #f4fbfc;
  color: var(--ink-soft);
  padding: 0 14px;
  font-weight: 800;
}

.mini-search i {
  color: var(--teal-dark);
  font-size: 19px;
}

.mini-chip-row,
.question-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-chip-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-result-card {
  grid-column: 1 / -1;
  border-radius: var(--radius-card);
  background: #0b1d23;
  color: #ffffff;
  padding: 14px;
}

.mini-result-card .mini-result-icon {
  background: #ffffff;
  color: var(--teal-dark);
}

.mini-result-card strong {
  color: #ffffff;
}

.mini-result-card small {
  color: rgba(255, 255, 255, 0.66);
}

.mini-result-card b {
  margin-left: auto;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  padding: 9px 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.category-dot {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 15px;
  background: #effbf8;
  color: var(--teal-dark);
  box-shadow: none;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.category-dot::after {
  display: none;
}

.category-dot i {
  position: relative;
  z-index: 1;
  font-size: 23px;
  line-height: 1;
}

.food-category:hover .category-dot,
.food-category:focus-visible .category-dot {
  background: rgba(63, 224, 197, 0.16);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.pizza-dot,
.burger-dot,
.chicken-dot,
.rice-dot,
.breakfast-dot,
.dessert-dot,
.drinks-dot,
.healthy-dot {
  background: #effbf8;
  color: var(--teal-dark);
}

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

.feature-card,
.service-card,
.value-card,
.direct-card,
.journey-card,
.category-card,
.launch-card {
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
}

.service-art {
  position: relative;
  flex: 1 1 auto;
  min-height: 150px;
  margin: -22px -22px 22px;
  overflow: hidden;
}

.service-art span {
  position: absolute;
  display: block;
}

.service-card h3 {
  color: var(--ink);
  font-size: 1.36rem;
}

.service-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-restaurants {
  background: #e7fbff;
}

.service-categories {
  background: #effcfa;
}

.service-locations {
  background: #f3fbff;
}

.service-drops {
  background: #f1fffb;
}

.service-restaurants .service-art span:nth-child(1) {
  left: 24%;
  top: 26%;
  width: 52%;
  height: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 42%, var(--coral) 0 16%, transparent 17%),
    radial-gradient(circle at 58% 54%, var(--gold) 0 15%, transparent 16%),
    #ffffff;
  box-shadow: 0 18px 34px rgba(15, 40, 48, 0.14);
}

.service-restaurants .service-art span:nth-child(2) {
  left: 36%;
  top: 47%;
  width: 34%;
  height: 11%;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-16deg);
}

.service-restaurants .service-art span:nth-child(3) {
  left: 31%;
  top: 78%;
  width: 38%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.13);
}

.service-categories .service-art span:nth-child(1) {
  left: 16%;
  top: 24%;
  width: 30%;
  height: 30%;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 74px 0 0 #f3fbff, 37px 60px 0 #ffffff, 111px 60px 0 #ffffff;
}

.service-categories .service-art span:nth-child(2) {
  left: 22%;
  top: 31%;
  width: 16%;
  height: 8%;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 74px 0 0 var(--coral), 37px 60px 0 var(--gold), 111px 60px 0 var(--green);
}

.service-categories .service-art span:nth-child(3) {
  display: none;
}

.service-locations .service-art span:nth-child(1) {
  left: 18%;
  top: 30%;
  width: 64%;
  height: 44%;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(31, 75, 92, 0.08) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgba(31, 75, 92, 0.08) 0 1px, transparent 1px 28px),
    #ffffff;
  box-shadow: 0 18px 34px rgba(15, 40, 48, 0.12);
}

.service-locations .service-art span:nth-child(2) {
  left: 47%;
  top: 40%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 4px;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 44px 26px 0 var(--coral), -48px 24px 0 var(--gold);
}

.service-locations .service-art span:nth-child(3) {
  left: 27%;
  top: 76%;
  width: 46%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.12);
}

.service-drops .service-art span:nth-child(1) {
  left: 22%;
  top: 26%;
  width: 56%;
  height: 46%;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 40, 48, 0.12);
}

.service-drops .service-art span:nth-child(2) {
  left: 29%;
  top: 35%;
  width: 42%;
  height: 10%;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 24px 0 rgba(15, 40, 48, 0.18);
}

.service-drops .service-art span:nth-child(3) {
  left: 61%;
  top: 23%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: -62px 72px 0 var(--gold);
}

.feature-card {
  min-height: 248px;
  padding: 26px;
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card h3,
.value-card h3,
.direct-card h3,
.journey-card strong,
.category-card h3 {
  color: var(--ink);
}

.feature-card h3,
.value-card h3,
.direct-card h3 {
  margin-top: 22px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.feature-card p,
.value-card p,
.direct-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.restaurant-value {
  background:
    linear-gradient(135deg, #ffffff 0%, rgba(232, 250, 252, 0.92) 52%, #ffffff 100%);
}

.restaurant-command {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: 34px;
}

.restaurant-copy {
  max-width: 640px;
}

.restaurant-copy h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.restaurant-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.restaurant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.restaurant-badges span {
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.1);
  color: var(--teal-dark);
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(63, 224, 197, 0.18);
}

.restaurant-trust-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(15, 40, 48, 0.1);
  border-bottom: 1px solid rgba(15, 40, 48, 0.1);
  margin-top: 6px;
  padding: 18px 0;
}

.restaurant-trust-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.restaurant-trust-strip i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  font-size: 17px;
}

.storefront-panel {
  justify-self: center;
  width: min(100%, 420px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.storefront-top {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 9px 12px;
  box-shadow: 0 14px 34px rgba(15, 40, 48, 0.08);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.storefront-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.storefront-top strong {
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
}

.storefront-body {
  padding: 12px 0 0;
}

.official-page-card {
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
  padding: 18px;
  box-shadow: 0 34px 80px rgba(15, 40, 48, 0.16);
}

.official-page-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.official-page-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--teal);
  color: var(--ink);
  font-size: 24px;
}

.official-page-head strong,
.official-page-head small {
  display: block;
}

.official-page-head strong {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.12;
}

.official-page-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.official-page-head b {
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.16);
  color: var(--teal-dark);
  padding: 7px 10px;
  font-size: 0.76rem;
}

.official-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.official-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.official-page-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.12);
  color: var(--teal-dark);
  padding: 0 9px;
  font-size: 0.74rem;
  font-weight: 900;
}

.official-page-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  padding: 0 11px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(15, 40, 48, 0.08);
}

.official-menu-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.official-menu-list article {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 12px;
}

.official-menu-list span,
.official-menu-list small {
  display: block;
}

.official-menu-list span {
  color: var(--ink);
  font-weight: 900;
}

.official-menu-list small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.official-page-card > a,
.official-page-card > .official-menu-open {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.sample-menu[hidden] {
  display: none;
}

.sample-menu {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 40, 48, 0.1);
}

.sample-menu-label {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-menu-items {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.sample-menu-items article {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  border-radius: 14px;
  background: #ffffff;
  padding: 11px 12px;
}

.sample-menu-items strong,
.sample-menu-items small {
  display: block;
}

.sample-menu-items strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.sample-menu-items small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.sample-menu-items b {
  color: var(--ink);
  font-size: 0.88rem;
  white-space: nowrap;
}

.sample-order-summary {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.sample-order-summary span {
  flex: 1;
  border-radius: 12px;
  background: rgba(63, 224, 197, 0.1);
  color: var(--teal-dark);
  padding: 9px 8px;
  text-align: center;
  font-size: 0.73rem;
  font-weight: 900;
}

.sample-menu-cta {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.storefront-pill {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.14);
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.storefront-body h3 {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.22;
}

.storefront-meter {
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.08);
  overflow: hidden;
}

.storefront-meter span {
  display: block;
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.storefront-steps {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.storefront-steps div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  border: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: var(--radius-card);
  padding: 12px 14px;
}

.storefront-steps div span {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.storefront-steps div strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.storefront-steps div small {
  color: var(--muted);
  font-size: 0.86rem;
}

.storefront-menu-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.storefront-menu-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: var(--radius-card);
  background: #f8fcfb;
  padding: 10px 12px;
}

.storefront-menu-list strong,
.storefront-menu-list small {
  display: block;
}

.storefront-menu-list strong {
  color: var(--ink);
}

.storefront-menu-list small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.restaurant-proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.proof-card {
  min-height: 168px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  box-shadow: none;
  padding: 24px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.proof-card:hover {
  border-color: rgba(63, 224, 197, 0.3);
  background: #ffffff;
  transform: translateY(-2px);
}

.proof-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.22;
}

.proof-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  font-size: 23px;
}

.location-section {
  background: #070b0d;
  color: #ffffff;
}

.location-section .section-kicker {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #8ff4e7;
}

.location-section .section-heading h2 {
  color: #ffffff;
}

.location-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.location-short {
  max-width: 500px;
}

.location-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.location-choice {
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  padding: 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.location-choice:hover,
.location-choice:focus-visible,
.location-choice.is-active {
  border-color: rgba(143, 244, 231, 0.38);
  background: rgba(143, 244, 231, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.location-choice i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(143, 244, 231, 0.12);
  color: #8ff4e7;
  font-size: 21px;
  flex-shrink: 0;
}

.location-choice.is-active i {
  background: var(--teal);
  color: var(--ink);
}

.location-choice strong,
.location-choice small {
  display: block;
}

.location-choice strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.1;
}

.location-choice small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.location-actions .button {
  min-height: 46px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  align-items: center;
  gap: 34px;
}

.discovery-question {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  border-top: 1px solid rgba(15, 40, 48, 0.06);
  border-bottom: 1px solid rgba(15, 40, 48, 0.08);
  color: var(--ink);
}

.discovery-question .section-kicker {
  border-color: rgba(63, 224, 197, 0.18);
  background: rgba(63, 224, 197, 0.1);
  color: var(--teal-dark);
}

.discovery-question .section-heading h2 {
  color: var(--ink);
}

.discovery-question .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.discovery-question-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 30px;
}

.plan-flow {
  position: relative;
  min-height: 320px;
}

.plan-search {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: #0b1d23;
  color: #ffffff;
  padding: 0 18px 0 12px;
  box-shadow: 0 20px 48px rgba(15, 40, 48, 0.2);
}

.plan-search i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  font-size: 20px;
}

.plan-search strong,
.plan-search small {
  display: block;
}

.plan-search strong {
  color: #ffffff;
  line-height: 1.1;
}

.plan-search small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-map {
  position: relative;
  height: 158px;
  margin-top: 14px;
}

.plan-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.plan-map path {
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 3;
  stroke-dasharray: 4 14;
  stroke-linecap: round;
  animation: promiseDash 10s linear infinite;
}

.plan-pin {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 25px;
  box-shadow: 0 18px 44px rgba(15, 40, 48, 0.12);
}

.plan-pin::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(63, 224, 197, 0.22);
  border-radius: inherit;
}

.plan-pin-one {
  left: 2%;
  top: 62px;
}

.plan-pin-two {
  left: 49%;
  top: 8px;
}

.plan-pin-three {
  right: 3%;
  top: 74px;
}

.plan-moments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.plan-moments span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.plan-moments span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.plan-flow > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  margin-top: 22px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 900;
}

.discovery-question-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, #0b1d23 0%, #123740 100%);
  color: #ffffff;
  box-shadow: 0 24px 68px rgba(15, 40, 48, 0.18);
  padding: 28px;
}

.question-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(143, 244, 231, 0.14);
  color: #8ff4e7;
  font-size: 28px;
}

.trip-card-top .question-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.discovery-question-card h3 {
  margin-top: 22px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.18;
}

.discovery-question-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.discovery-question-card .trip-card-top strong {
  color: #ffffff;
}

.discovery-question-card .trip-card-top small {
  color: rgba(255, 255, 255, 0.62);
}

.trip-route {
  display: grid;
  grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.trip-route span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.trip-route i {
  height: 2px;
  border-radius: 999px;
  background: rgba(143, 244, 231, 0.72);
}

.question-tags {
  margin-top: 24px;
}

.question-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

/* ───────── Live restaurant discovery map ───────── */
.map-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  background: #070b0d;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(6, 21, 23, 0.42), 0 0 0 1px rgba(63, 224, 197, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.map-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(63, 224, 197, 0.16), transparent 23%),
    radial-gradient(circle at 26% 72%, rgba(255, 255, 255, 0.06), transparent 28%),
    #070b0d;
  cursor: grab;
}

.map-canvas:active { cursor: grabbing; }

.map-canvas .leaflet-container {
  background: #070b0d;
  font-family: inherit;
  outline: none;
}

.map-canvas .leaflet-control-attribution {
  background: rgba(8, 12, 14, 0.7);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px 0 0 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.map-canvas .leaflet-control-attribution a { color: rgba(143, 244, 231, 0.85); }

.map-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 11, 13, 0.55) 0%, transparent 18%, transparent 60%, rgba(7, 11, 13, 0.78) 100%),
    radial-gradient(120% 60% at 50% 0%, transparent 60%, rgba(7, 11, 13, 0.55) 100%);
}

/* Map controls */
.map-controls {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-ctl {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(15, 19, 21, 0.86);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.map-ctl:hover { background: rgba(25, 32, 35, 0.92); transform: translateY(-1px); }
.map-ctl:active { transform: translateY(0) scale(0.97); }
.map-ctl i {
  font-size: 19px;
  line-height: 1;
}
.map-ctl-locate {
  background: linear-gradient(140deg, #3fe0c5, #06a8bb);
  color: #061517;
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(63, 224, 197, 0.36);
}

/* Top-left address pill */
.map-address {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(15, 19, 21, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.map-address-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3fe0c5;
  box-shadow: 0 0 0 4px rgba(63, 224, 197, 0.18);
  animation: kllivo-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes kllivo-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63, 224, 197, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(63, 224, 197, 0.05); }
}
.map-address-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.map-address-text strong {
  display: block;
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.map-food-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 16px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.map-food-card strong,
.map-food-card small {
  display: block;
}

.map-food-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-food-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-food-card.is-switching {
  animation: mapCardNudge 260ms ease;
}

@keyframes mapCardNudge {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Custom user pin */
.leaflet-marker-icon.kllivo-pin,
.kllivo-pin { background: transparent !important; border: none !important; }

.kllivo-user {
  position: relative;
  width: 26px; height: 26px;
}
.kllivo-user::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 224, 197, 0.35) 0%, rgba(63, 224, 197, 0) 65%);
  animation: kllivo-user-halo 2.4s ease-out infinite;
}
.kllivo-user::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #3fe0c5;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(63, 224, 197, 0.5);
}
@keyframes kllivo-user-halo {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.restaurant-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 34px;
}

.restaurant-layout .value-grid {
  grid-column: 1 / -1;
}

.section-actions {
  margin-top: 30px;
}

.section-actions p {
  max-width: 440px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

.operator-panel {
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.operator-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
}

.operator-header span {
  color: var(--muted);
  font-weight: 800;
}

.operator-header strong {
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.operator-progress {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.08);
  overflow: hidden;
}

.operator-progress span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.operator-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.operator-list div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  border: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: var(--radius-card);
  padding: 14px;
}

.operator-list span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--teal), #bff8ed);
}

.operator-list strong {
  color: var(--ink);
}

.operator-list small {
  color: var(--muted);
}

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

.value-card {
  min-height: 188px;
  padding: 22px;
}

.value-dot {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(63, 224, 197, 0.12);
}

.how-it-works {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  color: var(--ink);
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-kicker {
  border-color: rgba(63, 224, 197, 0.18);
  background: rgba(63, 224, 197, 0.1);
  color: var(--teal-dark);
}

.how-it-works .section-heading h2 {
  color: var(--ink);
  text-shadow: none;
}

.how-it-works .section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.how-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  align-items: center;
  gap: 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.how-step {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 16px;
  row-gap: 6px;
  border: 0;
  border-bottom: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 22px 0;
  box-shadow: none;
  overflow: visible;
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.how-step::before {
  display: none;
}

.how-step-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #effbf8;
  color: var(--teal-dark);
  font-size: 25px;
  box-shadow: none;
}

.how-step small {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  border-radius: 999px;
  background: #f3fbfa;
  color: var(--teal-dark);
  padding: 6px 9px;
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.how-step h3 {
  grid-column: 2;
  grid-row: 1;
  position: static;
  margin-top: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.14;
}

.how-step p {
  grid-column: 2 / 4;
  grid-row: 2;
  position: static;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.how-phone {
  justify-self: center;
  width: min(100%, 410px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  box-shadow: 0 34px 80px rgba(0, 36, 44, 0.28);
}

.how-phone-top {
  min-height: 42px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.how-phone-top span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), #06a8bb);
}

.how-phone-top strong {
  text-align: center;
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 1.1rem;
}

.how-phone-top i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f3fbfa;
  color: var(--teal-dark);
}

.how-search-pill {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #f4fbfc;
  color: var(--ink-soft);
  padding: 0 14px;
  margin-top: 12px;
  font-weight: 800;
}

.how-search-pill i {
  color: var(--teal-dark);
  font-size: 19px;
}

.how-cravings {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow: hidden;
}

.how-cravings span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.how-restaurant-card {
  margin-top: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #0b1d23 0%, #123740 100%);
  color: #ffffff;
  padding: 18px;
}

.how-restaurant-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.how-food-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--teal);
  color: var(--ink);
  font-size: 25px;
  flex-shrink: 0;
}

.how-restaurant-card strong,
.how-restaurant-card small {
  display: block;
}

.how-restaurant-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.how-restaurant-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.how-restaurant-card button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  margin-top: 16px;
  font: inherit;
  font-weight: 900;
}

.kllivo-bridge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: #f8fcfb;
  margin-top: 18px;
  padding: 18px;
  color: var(--ink);
  box-shadow: none;
}

.bridge-badge {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.12);
  color: var(--teal-dark);
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kllivo-bridge p {
  color: var(--muted);
  font-size: 0.96rem;
}

.kllivo-bridge a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 900;
}

.customer-teaser {
  background:
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
}

.restaurant-directory {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

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

.directory-grid a {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: var(--radius-card);
  background: var(--white);
  color: var(--ink);
  padding: 14px 16px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 40, 48, 0.06);
}

.directory-grid a::after {
  content: "Browse";
  margin-left: auto;
  border-radius: 999px;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.category-toolbar {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 24px;
}

.category-toolbar span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 999px;
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 40, 48, 0.05);
}

.category-toolbar span:first-child {
  background: var(--ink);
  color: var(--white);
}

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

.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.category-card:hover {
  border-color: rgba(63, 224, 197, 0.42);
  box-shadow: 0 18px 44px rgba(15, 40, 48, 0.1);
  transform: translateY(-2px);
}

.category-visual {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.category-visual span {
  position: absolute;
  display: block;
}

.category-copy {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 16px 14px 18px;
  text-align: center;
}

.category-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.pizza-visual {
  background: linear-gradient(135deg, #f4fbfc, #eaf8f5);
}

.pizza-visual span:nth-child(1) {
  left: 20%;
  top: 18%;
  width: 62%;
  height: 64%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, #a94f47 0 7%, transparent 8%),
    radial-gradient(circle at 62% 37%, #a94f47 0 7%, transparent 8%),
    radial-gradient(circle at 45% 64%, #315846 0 4%, transparent 5%),
    conic-gradient(from -12deg, rgba(255,255,255,0.82) 0 2deg, transparent 2deg 58deg, rgba(255,255,255,0.72) 58deg 60deg, transparent 60deg 118deg, rgba(255,255,255,0.72) 118deg 120deg, transparent 120deg 178deg, rgba(255,255,255,0.76) 178deg 180deg, transparent 180deg 238deg, rgba(255,255,255,0.72) 238deg 240deg, transparent 240deg 298deg, rgba(255,255,255,0.7) 298deg 300deg, transparent 300deg 360deg),
    radial-gradient(circle at 50% 50%, #f4cf68 0 58%, #c58a48 59% 72%, #fffefa 73% 100%);
  box-shadow: 0 18px 32px rgba(15, 40, 48, 0.13);
}

.pizza-visual span:nth-child(2) {
  left: 28%;
  top: 68%;
  width: 44%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.12);
}

.pizza-visual span:nth-child(3) {
  display: none;
}

.burger-visual {
  background: linear-gradient(135deg, #f4fbfc, #edf8f3);
}

.chicken-visual {
  background: linear-gradient(135deg, #f4fbfc, #edf8f3);
}

.chicken-visual span:nth-child(1) {
  left: 27%;
  top: 32%;
  width: 42%;
  height: 34%;
  border-radius: 52% 48% 54% 46%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22) 0 10%, transparent 11%),
    #b8664f;
  box-shadow: 0 18px 30px rgba(15, 40, 48, 0.13);
  transform: rotate(-22deg);
}

.chicken-visual span:nth-child(2) {
  left: 59%;
  top: 52%;
  width: 24%;
  height: 11%;
  border-radius: 999px;
  background: #f4efe7;
  transform: rotate(-22deg);
}

.chicken-visual span:nth-child(3) {
  left: 78%;
  top: 47%;
  width: 12%;
  height: 12%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: -10px 7px 0 #ffffff, 0 12px 22px rgba(15, 40, 48, 0.1);
}

.rice-visual {
  background: linear-gradient(135deg, #edf8f3, #f4fbfc);
}

.rice-visual span:nth-child(1) {
  left: 22%;
  top: 38%;
  width: 56%;
  height: 30%;
  border-radius: 12px 12px 44px 44px;
  background: linear-gradient(180deg, #ffffff 0 34%, #e8d6b3 35% 100%);
  box-shadow: 0 16px 30px rgba(15, 40, 48, 0.12);
}

.rice-visual span:nth-child(2) {
  left: 28%;
  top: 27%;
  width: 44%;
  height: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 48%, #5da573 0 8%, transparent 9%),
    radial-gradient(circle at 54% 40%, #d5bd62 0 9%, transparent 10%),
    radial-gradient(circle at 70% 56%, #b76250 0 8%, transparent 9%),
    repeating-radial-gradient(circle at 50% 50%, #f9f3df 0 3px, #efe3c3 4px 6px);
}

.rice-visual span:nth-child(3) {
  left: 30%;
  top: 70%;
  width: 40%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 75, 92, 0.14);
}

.african-visual {
  background: linear-gradient(135deg, #f4fbfc, #edf8f3);
}

.african-visual span:nth-child(1) {
  left: 22%;
  top: 23%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 42%, #d3b14d 0 20%, transparent 21%),
    radial-gradient(circle at 60% 38%, #b86752 0 17%, transparent 18%),
    radial-gradient(circle at 55% 62%, #224e45 0 13%, transparent 14%),
    #ffffff;
  box-shadow: 0 18px 32px rgba(15, 40, 48, 0.12);
}

.african-visual span:nth-child(2) {
  left: 30%;
  top: 68%;
  width: 40%;
  height: 7px;
  border-radius: 999px;
  background: rgba(31, 75, 92, 0.14);
}

.african-visual span:nth-child(3) {
  left: 45%;
  top: 25%;
  width: 9%;
  height: 54%;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.08);
  transform: rotate(34deg);
}

.breakfast-visual {
  background: linear-gradient(135deg, #f4fbfc, #edf8f3);
}

.breakfast-visual span:nth-child(1) {
  left: 24%;
  top: 30%;
  width: 52%;
  height: 46%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 40, 48, 0.12);
}

.breakfast-visual span:nth-child(2) {
  left: 35%;
  top: 39%;
  width: 23%;
  height: 23%;
  border-radius: 50%;
  background: var(--gold);
}

.breakfast-visual span:nth-child(3) {
  left: 56%;
  top: 47%;
  width: 22%;
  height: 9%;
  border-radius: 999px;
  background: #7b3e3a;
  transform: rotate(-18deg);
}

.cafe-visual {
  background: linear-gradient(135deg, #eef8f5, #f7f6f2);
}

.dessert-visual {
  background: linear-gradient(135deg, #f3edf4, #edf8f3);
}

.dessert-visual span:nth-child(1) {
  left: 28%;
  top: 28%;
  width: 46%;
  height: 44%;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0 35%, var(--plum) 36% 100%);
}

.dessert-visual span:nth-child(2) {
  left: 34%;
  top: 20%;
  width: 34%;
  height: 18%;
  border-radius: 999px;
  background: #ffffff;
}

.dessert-visual span:nth-child(3) {
  left: 48%;
  top: 18%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b35b58;
}

.healthy-visual {
  background: linear-gradient(135deg, #edf8f3, #f4fbfc);
}

.healthy-visual span:nth-child(1) {
  left: 23%;
  top: 38%;
  width: 54%;
  height: 34%;
  border-radius: 12px 12px 42px 42px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 40, 48, 0.12);
}

.healthy-visual span:nth-child(2) {
  left: 28%;
  top: 27%;
  width: 44%;
  height: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 52%, #4c9f74 0 13%, transparent 14%),
    radial-gradient(circle at 48% 38%, #82ad86 0 14%, transparent 15%),
    radial-gradient(circle at 66% 55%, #d3c66e 0 11%, transparent 12%),
    radial-gradient(circle at 56% 66%, #224e45 0 9%, transparent 10%),
    #ffffff;
}

.healthy-visual span:nth-child(3) {
  left: 34%;
  top: 70%;
  width: 32%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 75, 92, 0.14);
}

.drinks-visual {
  background: linear-gradient(135deg, #eef8f5, #f2f0f7);
}

.drinks-visual span:nth-child(1) {
  left: 32%;
  top: 28%;
  width: 36%;
  height: 48%;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0 30%, var(--teal) 31% 100%);
  box-shadow: 0 18px 30px rgba(15, 40, 48, 0.13);
}

.drinks-visual span:nth-child(2) {
  left: 47%;
  top: 15%;
  width: 8%;
  height: 24%;
  border-radius: 999px;
  background: #153842;
}

.drinks-visual span:nth-child(3) {
  left: 41%;
  top: 47%;
  width: 18%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.wrap-visual {
  background: linear-gradient(135deg, #f4fbfc, #edf8f3);
}

.wrap-visual span:nth-child(1) {
  left: 26%;
  top: 31%;
  width: 52%;
  height: 34%;
  border-radius: 999px;
  background: #d8b679;
  box-shadow: 0 16px 30px rgba(15, 40, 48, 0.12);
  transform: rotate(-16deg);
}

.wrap-visual span:nth-child(2) {
  left: 31%;
  top: 35%;
  width: 40%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, #224e45 0 28%, #ffffff 29% 52%, #b76250 53% 100%);
  transform: rotate(-16deg);
}

.wrap-visual span:nth-child(3) {
  left: 42%;
  top: 60%;
  width: 28%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 75, 92, 0.16);
}

.cloud-visual {
  background: linear-gradient(135deg, #f6f8f8, #eaf7f4);
}

.cloud-visual span:nth-child(1) {
  left: 24%;
  top: 36%;
  width: 52%;
  height: 34%;
  border-radius: 8px 8px 14px 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 40, 48, 0.12);
}

.cloud-visual span:nth-child(2) {
  left: 24%;
  top: 28%;
  width: 52%;
  height: 18%;
  border-radius: 16px 16px 5px 5px;
  background: var(--teal);
}

.cloud-visual span:nth-child(3) {
  left: 43%;
  top: 50%;
  width: 14%;
  height: 20%;
  border-radius: 6px 6px 0 0;
  background: #e9f4ef;
  box-shadow: -22px -1px 0 rgba(31, 75, 92, 0.18), 22px -1px 0 rgba(31, 75, 92, 0.18);
}

.launch-partner {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 34px;
}

.launch-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  padding: 8px 0 8px 34px;
  background: transparent;
  box-shadow: none;
}

.launch-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), rgba(63, 224, 197, 0.12));
}

.launch-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 2.15rem;
}

.launch-card p {
  max-width: 420px;
  margin-top: 12px;
  color: var(--muted);
}

.launch-card .button {
  width: fit-content;
  margin-top: 24px;
}

.store-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-download {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(15, 40, 48, 0.12);
  border-radius: var(--radius-card);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 16px;
  box-shadow: 0 16px 34px rgba(15, 40, 48, 0.16);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.store-download:hover,
.store-download:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 40, 48, 0.2);
}

.store-download i {
  font-size: 28px;
  line-height: 1;
}

.store-download small,
.store-download strong {
  display: block;
  line-height: 1.05;
}

.store-download small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
}

.store-download strong {
  margin-top: 3px;
  color: #ffffff;
  font-family: "Satoshi", "Onest", sans-serif;
  font-size: 1rem;
}

.launch-app-card {
  border-color: transparent;
  box-shadow: none;
}

.launch-meter {
  height: 8px;
  max-width: 380px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(15, 40, 48, 0.08);
  overflow: hidden;
}

.launch-meter span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #06a8bb);
}

.launch-feed {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.launch-feed span {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
}

.launch-feed span:last-child {
  border-bottom: 0;
}

.launch-feed i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  font-size: 22px;
}

.launch-feed strong,
.launch-feed small {
  display: block;
}

.launch-feed strong {
  color: var(--ink);
  line-height: 1.15;
}

.launch-feed small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.direct-ordering {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

.direct-preview {
  max-width: 780px;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 40, 48, 0.06);
  margin: -18px auto 22px;
  padding: 16px;
}

.direct-preview > div {
  min-width: 0;
}

.direct-preview a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  margin-left: auto;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.direct-card {
  min-height: 210px;
  border-color: rgba(15, 40, 48, 0.08);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  box-shadow: none;
  padding: 24px;
  transition: transform 170ms ease, border-color 170ms ease;
}

.direct-card:hover {
  border-color: rgba(63, 224, 197, 0.28);
  transform: translateY(-2px);
}

.direct-card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.final-cta {
  padding-top: 64px;
  padding-bottom: 92px;
  background:
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #071a20 0%, #0f343d 70%, #123740 100%);
  color: var(--white);
  padding: 54px;
  box-shadow: 0 34px 90px rgba(15, 40, 48, 0.2);
  overflow: hidden;
}

.final-card .section-kicker {
  color: var(--teal);
}

.final-card h2 {
  max-width: 760px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.final-card p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.final-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.final-signal span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.final-signal i {
  color: var(--teal);
  font-size: 18px;
}

.final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(15, 40, 48, 0.08);
  background: linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-brand-col {
  max-width: 360px;
}

.footer-brand-col .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 122px;
  height: auto;
  display: block;
}

.footer-brand-col p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-rollout {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-col h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Satoshi", "Onest", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col nav a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-col nav a:hover,
.footer-col nav a:focus-visible {
  color: var(--teal-dark);
  transform: translateX(2px);
  outline: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 54px;
  padding: 24px 0;
  border-top: 1px solid rgba(15, 40, 48, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(63, 224, 197, 0.12);
  border-color: rgba(63, 224, 197, 0.3);
  outline: 0;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 40, 48, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 -12px 34px rgba(15, 40, 48, 0.08);
}

.mobile-sticky-cta .button {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.download-alert[hidden] {
  display: none;
}

.download-alert {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.download-alert-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(63, 224, 197, 0.08), transparent 26%),
    rgba(6, 21, 23, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.download-alert-card {
  position: relative;
  width: min(100%, 468px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 66px rgba(15, 40, 48, 0.15);
}

.download-alert-card::before {
  content: none;
}

.download-alert-content {
  padding: 32px 32px 29px;
}

.download-alert-close {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: 50%;
  background: #f7fbfb;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.download-alert-close:focus-visible {
  outline: 3px solid rgba(63, 224, 197, 0.72);
  outline-offset: 3px;
}

.download-alert-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 11px !important;
  color: var(--teal-dark) !important;
  font-size: 0.7rem !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-alert-eyebrow span,
.arrival-kicker span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(63, 224, 197, 0.55);
}

.download-alert-card h2 {
  max-width: 360px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 5vw, 2.1rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.download-alert-copy {
  max-width: 390px;
  margin: 13px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.62 !important;
}

.download-alert-steps {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.download-alert-steps span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(15, 40, 48, 0.08);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.download-alert-steps span:last-child {
  border-bottom: 0;
}

.download-alert-steps i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(63, 224, 197, 0.13);
  color: var(--teal-dark);
  font-size: 17px;
}

.download-alert-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.download-alert-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 900;
}

.download-alert-actions a:last-child {
  border: 1px solid rgba(15, 40, 48, 0.1);
  background: #ffffff;
  color: var(--ink);
}

.early-access-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.early-access-form label {
  display: grid;
  gap: 7px;
  text-align: left;
}

.early-access-form label span {
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
}

.early-access-form input {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(15, 40, 48, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.early-access-form input::placeholder {
  color: #9aa8aa;
}

.early-access-form input:focus {
  outline: 2px solid rgba(63, 224, 197, 0.24);
  border-color: rgba(31, 75, 92, 0.42);
}

.early-access-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.slide-confirm {
  margin-top: 7px;
}

.slide-confirm-track {
  --slide-position: 0px;
  position: relative;
  height: 58px;
  border-radius: 999px;
  background: var(--ink);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}

.slide-confirm-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(60px + var(--slide-position));
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal) 0%, #67e5d0 100%);
  transition: width 160ms ease;
}

.slide-confirm.is-dragging .slide-confirm-fill,
.slide-confirm.is-dragging .slide-confirm-thumb {
  transition: none;
}

.slide-confirm-copy {
  position: absolute;
  inset: 0 50px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  transition: opacity 160ms ease;
}

.slide-confirm-thumb {
  position: absolute;
  left: 5px;
  top: 5px;
  transform: translateX(var(--slide-position));
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #061517;
  font-size: 21px;
  cursor: grab;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.slide-confirm-thumb:focus-visible {
  outline: 3px solid rgba(63, 224, 197, 0.55);
  outline-offset: -1px;
}

.slide-confirm-thumb:active {
  cursor: grabbing;
}

.slide-confirm.is-complete .slide-confirm-fill {
  width: 100%;
}

.slide-confirm.is-complete .slide-confirm-thumb {
  background: var(--teal);
}

.slide-confirm.is-complete .slide-confirm-copy {
  color: var(--ink);
}

.slide-confirm-help {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0 2px !important;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  text-align: center;
  transition: max-height 180ms ease, margin 180ms ease, opacity 180ms ease;
}

.slide-confirm:focus-within .slide-confirm-help {
  max-height: 22px;
  opacity: 1;
  margin-top: 8px !important;
}

.slide-confirm.is-submitting .slide-confirm-thumb {
  cursor: wait;
}

.early-access-status {
  min-height: 20px;
  margin: 0 !important;
  color: var(--teal-dark) !important;
  font-size: 0.84rem !important;
  font-weight: 800;
}

.early-access-status:empty {
  display: none;
}

.early-access-status.is-error {
  color: #b73b3b !important;
}

.arrival-reveal[hidden] {
  display: none;
}

.arrival-reveal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 18px;
}

.arrival-reveal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(63, 224, 197, 0.08), transparent 27%),
    rgba(6, 21, 23, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.arrival-reveal-card {
  position: relative;
  width: min(100%, 462px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border: 1px solid rgba(15, 40, 48, 0.09);
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 30px;
  box-shadow: 0 24px 66px rgba(15, 40, 48, 0.15);
}

.arrival-reveal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 40, 48, 0.08);
  border-radius: 50%;
  background: #f7fbfb;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.arrival-reveal-close:focus-visible,
.arrival-gallery:focus-visible,
.arrival-gallery-arrow:focus-visible,
.arrival-done:focus-visible {
  outline: 3px solid rgba(63, 224, 197, 0.72);
  outline-offset: 3px;
}

.arrival-kicker {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-dark);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrival-reveal-card h2 {
  max-width: 410px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 6vw, 2.05rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.arrival-copy {
  max-width: 390px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.arrival-copy strong {
  color: var(--ink);
}

.arrival-copy[hidden] {
  display: none;
}

.arrival-gallery {
  margin-top: 22px;
  border-radius: 16px;
  outline: 0;
}

.arrival-stack {
  --arrival-drag: 0px;
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  cursor: grab;
  touch-action: pan-y;
}

.arrival-stack.is-dragging {
  cursor: grabbing;
}

.arrival-photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  margin: 0;
  border: 0;
  opacity: 0;
  box-shadow: 0 8px 30px rgba(15, 40, 48, 0.18);
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 240ms ease;
}

.arrival-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.arrival-photo.is-current {
  z-index: 3;
  opacity: 1;
  transform: rotate(-2deg) translateX(var(--arrival-drag));
}

.arrival-photo.is-previous {
  z-index: 1;
  opacity: 0.45;
  transform: rotate(6deg) scale(0.92) translate(-8px, 6px);
}

.arrival-photo.is-next {
  z-index: 2;
  opacity: 0.55;
  transform: rotate(5deg) scale(0.96) translate(6px, 4px);
}

.arrival-stack.is-dragging .arrival-photo {
  transition: none;
}

.arrival-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.arrival-gallery-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 40, 48, 0.1);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.arrival-gallery-meta {
  width: auto;
  display: grid;
  gap: 2px;
  text-align: center;
}

.arrival-gallery-meta strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.arrival-gallery-meta span {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrival-gallery-meta b {
  color: var(--teal);
  font-weight: 800;
}

.arrival-gallery-meta em {
  margin-left: 10px;
  font-style: normal;
}

.arrival-done {
  min-height: 48px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 21px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .arrival-photo {
    transition: none;
  }
}

@media (max-width: 820px) {
  .mobile-sticky-cta {
    display: block;
  }

  .download-alert {
    padding: 12px;
  }

  .download-alert-card {
    width: min(100%, 468px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .download-alert-content {
    padding: 25px 24px 22px;
  }

  .download-alert-card h2 {
    font-size: clamp(1.7rem, 7.5vw, 2rem);
  }

  .early-access-form {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .mobile-sticky-cta {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .button {
    min-height: 48px;
    font-size: 0.96rem;
  }

  .download-alert-card {
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .download-alert-content {
    padding: 27px 18px 18px;
  }

  .download-alert-copy {
    font-size: 0.92rem !important;
  }

  .early-access-form input {
    min-height: 50px;
  }

  .slide-confirm-track {
    height: 58px;
  }

  .slide-confirm-thumb {
    width: 48px;
    height: 48px;
  }

  .arrival-reveal {
    padding: 8px;
  }

  .arrival-reveal-card {
    max-height: calc(100vh - 16px);
    border-radius: 20px;
    padding: 27px 18px 18px;
  }

  .arrival-kicker {
    margin: 0 0 11px;
  }

  .arrival-stack {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }

  .arrival-photo {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .arrival-photo.is-previous {
    transform: rotate(6deg) scale(0.92) translate(-8px, 6px);
  }

  .arrival-photo.is-next {
    transform: rotate(5deg) scale(0.96) translate(6px, 4px);
  }

  .arrival-photo.is-current {
    width: 100%;
    height: 100%;
    transform: rotate(-2deg) translateX(var(--arrival-drag));
  }

  .arrival-gallery-controls {
    margin-top: 11px;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .store-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-featured {
    grid-column: 1 / -1;
  }

  .location-layout,
  .discovery-question-layout,
  .restaurant-layout,
  .restaurant-command,
  .how-flow,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .how-phone {
    width: min(100%, 440px);
  }

  .browse-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid,
  .value-grid,
  .direct-grid,
  .directory-grid,
  .restaurant-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card {
    min-height: auto;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-band {
    padding: 78px 0;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .language-trigger {
    min-height: 38px;
    gap: 8px;
    padding: 0 10px 0 9px;
  }

  .language-current {
    min-width: 52px;
    font-size: 0.82rem;
  }

  .language-menu {
    right: 0;
  }

  .brand-product {
    padding-left: 8px;
    font-size: 0.84rem;
  }

  .brand img {
    width: 116px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

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

  h1 {
    font-size: 2.85rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-switch-line {
    font-size: 1.08rem;
  }

  .hero-product {
    padding: 14px;
  }

  .product-topbar,
  .store-preview-grid,
  .store-featured,
  .store-card {
    grid-template-columns: 1fr;
  }

  .how-steps,
  .kllivo-bridge {
    grid-template-columns: 1fr;
  }

  .how-step {
    min-height: auto;
  }

  .restaurant-rail {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .restaurant-rail::-webkit-scrollbar {
    display: none;
  }

  .restaurant-rail span {
    min-width: 134px;
  }

  .store-featured .store-art,
  .store-art {
    min-height: 150px;
  }

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

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

  .value-grid,
  .service-grid,
  .direct-grid,
  .restaurant-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .map-panel {
    min-height: 520px;
  }

  .section-heading.centered {
    margin-bottom: 34px;
  }

  .operator-panel,
  .service-card,
  .discovery-question-card,
  .launch-card,
  .final-card {
    padding: 26px 22px;
  }

  .service-art {
    margin: -26px -22px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 88px;
  }

  .hero-actions,
  .final-actions,
  .restaurant-actions {
    align-items: stretch;
    width: 100%;
  }

  .restaurant-actions .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-switch-line {
    min-height: 1.5em;
    font-size: 1rem;
  }

  .section-heading h2,
  .final-card h2 {
    font-size: 2rem;
  }

  .how-flow {
    gap: 22px;
  }

  .how-step {
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 0;
  }

  .how-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  .how-step small {
    grid-column: 2;
    grid-row: 3;
    width: fit-content;
    margin-top: 4px;
  }

  .how-step h3 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .how-step p {
    grid-column: 2;
    grid-row: 2;
  }

  .how-phone {
    border-radius: 24px;
    padding: 14px;
  }

  .kllivo-bridge {
    align-items: start;
  }

  .kllivo-bridge a {
    width: 100%;
  }

  .store-downloads {
    flex-direction: column;
  }

  .store-download {
    width: 100%;
  }

  .order-preview {
    grid-template-columns: 1fr;
  }

  .address-search {
    grid-template-columns: 1fr;
    border-radius: var(--radius-card);
  }

  .address-search .button {
    width: 100%;
  }

  .category-rail {
    width: 100%;
    touch-action: pan-x pan-y;
  }

  .food-category {
    flex-basis: 214px;
    min-height: 86px;
    padding: 14px;
  }

  .promise-route {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .promise-wave {
    display: none;
  }

  .promise-node,
  .promise-node-one,
  .promise-node-two,
  .promise-node-three {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    transform: none;
  }

  .promise-pulse {
    width: 54px;
    height: 54px;
    grid-row: 1 / span 2;
  }

  .promise-content,
  .promise-node strong,
  .promise-node p {
    grid-column: 2;
  }

  .location-actions {
    align-items: stretch;
    width: 100%;
  }

  .location-actions .button {
    width: 100%;
  }

  .plan-flow {
    min-height: auto;
  }

  .plan-search,
  .plan-flow > a {
    width: 100%;
  }

  .plan-map {
    height: 128px;
    margin-top: 20px;
  }

  .plan-pin {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .plan-moments {
    gap: 8px 12px;
    font-size: 0.84rem;
  }

  .restaurant-trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .restaurant-trust-strip span {
    min-height: 36px;
  }

  .mini-result-card,
  .direct-preview {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-result-card b,
  .direct-preview a {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

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

  .map-panel {
    min-height: 540px;
  }

  .map-food-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 14px;
  }

  .location-picker,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .location-choice,
  .moment-grid span {
    min-height: 48px;
  }

  .trip-route {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .trip-route i {
    display: none;
  }

  .trip-route span {
    width: auto;
  }

  .map-address {
    left: 12px;
    top: 12px;
    min-height: 40px;
    padding: 0 12px;
  }
  .map-address-text strong {
    font-size: 0.82rem;
  }

  .map-controls {
    right: 12px;
    top: 12px;
    gap: 6px;
  }

  .map-ctl {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .site-footer {
    padding-top: 44px;
    padding-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col h4 {
    margin: 0 0 12px;
    font-size: 0.92rem;
  }

  .footer-col nav {
    gap: 8px;
  }

  .footer-col nav a {
    font-size: 0.9rem;
    padding: 4px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
  }

  .footer-social {
    width: 100%;
  }

  .footer-social a {
    flex: 1 1 auto;
    min-height: 40px;
    justify-content: center;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.08rem);
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .brand .brand-product {
    display: none;
  }

  .language-trigger {
    padding: 0 9px;
  }

  .language-current {
    min-width: 48px;
  }

  .hero-product {
    width: 100%;
  }

  .footer-social a {
    font-size: 0.84rem;
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
