* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

:root {
  --bg: #f8f9fa;
  --ink: #080808;
  --text: #4b5563;
  --muted: #6b7280;
  --soft: #9ca3af;
  --brand-black: #080808;
  --brand-orange: #ffb84c;
  --brand-yellow: #ffe05a;
  --brand-pink: #f85b8a;
  --brand-amber: #ff9f2f;
  --hot: var(--brand-pink);
  --orange: var(--brand-orange);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.08);
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    "Noto Sans Bengali",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    transform 0.2s;
}

.cursor-dot::before {
  content: "🍕";
  display: block;
  font-size: 25px;
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(248, 91, 138, 0.28));
  transform: scaleX(-1) rotate(234deg) translate(1px, -1px);
  transform-origin: 48% 52%;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(248, 91, 138, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}

.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 15px 30px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo-word {
  display: inline-flex;
  align-items: baseline;
}

.logo-food {
  color: var(--brand-orange);
}

.logo-bela {
  color: var(--brand-white);
}

.logo-dot {
  color: var(--brand-pink);
  margin-left: 2px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  background:
    radial-gradient(
      circle at 70% 30%,
      var(--brand-yellow) 0 11%,
      transparent 12%
    ),
    linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  box-shadow: 0 14px 28px rgba(255, 184, 76, 0.3);
  position: relative;
  flex: 0 0 auto;
}

.logo-mark::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 3px solid var(--white);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.logo-mark-image {
  overflow: hidden;
  background: var(--brand-orange);
}

.logo-mark-image::before,
.logo-mark-image::after {
  display: none;
}

.logo-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 100px;
  padding: 4px;
}

.language-switch button {
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  transition: all 0.3s;
}

.language-switch button.is-active {
  background: var(--hot);
  color: var(--white);
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 28px;
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-main:hover {
  background: var(--hot);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(248, 91, 138, 0.3);
}

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

.btn-light:hover {
  color: var(--white);
}

.btn-play {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  place-items: center;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--hot);
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 5%;
  overflow: hidden;
}

.hero > .hero-live-layer,
.hero > .hero-content {
  display: none;
}

.lifecycle-demo {
  position: relative;
  z-index: 4;
  width: min(1320px, 100%);
  height: min(700px, calc(100vh - 112px));
  min-height: 560px;
  margin-top: 86px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.lifecycle-demo:not(.is-playing) * {
  animation-play-state: paused !important;
}

.lifecycle-grid {
  position: absolute;
  inset: -40px 0 -30px;
  z-index: 0;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 44%, transparent 78%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    #000 0 44%,
    transparent 78%
  );
  pointer-events: none;
}

.lifecycle-route-svg {
  position: absolute;
  inset: -12px 0 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.flow-path {
  fill: none;
  stroke: rgba(17, 24, 39, 0.16);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 13;
}

.path-order {
  stroke: rgba(248, 91, 138, 0.34);
}

.path-package {
  stroke: rgba(255, 184, 76, 0.42);
}

.path-delivery {
  stroke: rgba(58, 210, 159, 0.42);
}

.lifecycle-device {
  position: absolute;
  z-index: 4;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.lifecycle-phone {
  width: clamp(158px, 14vw, 205px);
  min-height: clamp(292px, 25vw, 350px);
  border-radius: 34px;
  background: #111827;
  color: var(--white);
  border: 7px solid rgba(255, 255, 255, 0.84);
  padding: 16px 13px;
}

.customer-preview {
  left: clamp(18px, 6.5vw, 96px);
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  animation: lifecycleDeviceFloat 7.5s ease-in-out infinite;
}

.rider-preview {
  right: clamp(18px, 6.5vw, 96px);
  top: 52%;
  transform: translateY(-50%) rotate(5deg);
  animation: lifecycleDeviceFloatRider 7.5s ease-in-out infinite;
}

.restaurant-preview {
  left: 50%;
  top: 43%;
  width: min(440px, 34vw);
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 0;
  overflow: visible;
  border-radius: 30px;
  padding: 0;
  transform: translate(-50%, -50%);
  animation: restaurantGlow 11s ease-in-out infinite;
}

.restaurant-browser-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: rgba(17, 24, 39, 0.96);
  color: var(--white);
  border-radius: 30px 30px 0 0;
}

.restaurant-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot);
}

.restaurant-browser-bar span:nth-child(2) {
  background: var(--orange);
}

.restaurant-browser-bar span:nth-child(3) {
  background: #3ad29f;
}

.restaurant-browser-bar b {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.76);
}

.restaurant-panel-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 286px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.restaurant-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 14px;
  background: rgba(17, 24, 39, 0.04);
  border-right: 1px solid rgba(17, 24, 39, 0.06);
}

.restaurant-side strong {
  font-size: 0.88rem;
  line-height: 1.12;
  font-weight: 900;
}

.restaurant-side span {
  width: max-content;
  border-radius: 999px;
  background: rgba(58, 210, 159, 0.14);
  color: #047857;
  padding: 6px 9px;
  font-size: 0.68rem;
  font-weight: 900;
}

.restaurant-side small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 800;
}

.restaurant-main {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px;
}

.device-topbar {
  width: 46px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.device-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.food-ticket {
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 11px;
}

.food-emoji {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.5rem;
}

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

.food-ticket strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
}

.food-ticket small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
}

.order-tap {
  width: 100%;
  min-height: 42px;
  margin: 14px 0;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--hot), var(--orange));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(248, 91, 138, 0.25);
  pointer-events: none;
  animation: orderTapPulse 11s ease-in-out infinite;
}

.device-status-stack {
  position: relative;
  min-height: 38px;
}

.device-status {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  padding: 7px 9px;
  font-size: 0.66rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
}

.status-customer-start {
  animation: customerStartStatus 11s ease-in-out infinite;
}

.status-customer-placed {
  background: rgba(255, 184, 76, 0.2);
  color: #ffe1aa;
  animation: customerPlacedStatus 11s ease-in-out infinite;
}

.status-customer-delivered {
  background: rgba(58, 210, 159, 0.18);
  color: #b8f7de;
  animation: customerDeliveredStatus 11s ease-in-out infinite;
}

.restaurant-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.restaurant-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3ad29f;
  box-shadow: 0 0 0 10px rgba(58, 210, 159, 0.12);
}

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

.restaurant-head small {
  color: var(--hot);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.restaurant-head strong {
  margin-top: 4px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.08;
  font-weight: 900;
}

.restaurant-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 20px;
  background: #111827;
  color: var(--white);
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: orderTicketIn 11s ease-in-out infinite;
}

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

.restaurant-order-card small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 900;
}

.restaurant-order-card strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 900;
}

.restaurant-order-card span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(248, 91, 138, 0.18);
  color: #ffd2d7;
  padding: 8px 10px;
  font-size: 0.68rem;
  font-weight: 900;
}

.restaurant-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.restaurant-step {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 15px;
  background: rgba(17, 24, 39, 0.05);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 900;
}

.restaurant-step::after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(17, 24, 39, 0.16);
  border-top-color: var(--hot);
  opacity: 0;
  animation:
    spin 0.8s linear infinite,
    stepSpinnerHidden 11s ease-in-out infinite;
}

.step-accepted {
  animation: stepAcceptedActive 11s ease-in-out infinite;
}

.step-accepted::after {
  animation:
    spin 0.8s linear infinite,
    stepAcceptedSpinner 11s ease-in-out infinite;
}

.step-preparing {
  animation: stepPreparingActive 11s ease-in-out infinite;
}

.step-preparing::after {
  animation:
    spin 0.8s linear infinite,
    stepPreparingSpinner 11s ease-in-out infinite;
}

.step-ready {
  animation: stepReadyActive 11s ease-in-out infinite;
}

.step-ready::after {
  animation:
    spin 0.8s linear infinite,
    stepReadySpinner 11s ease-in-out infinite;
}

.rider-map {
  position: relative;
  height: 118px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.04)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 18px
    );
  margin-bottom: 18px;
}

.rider-map i {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3ad29f, var(--orange), var(--hot));
  transform: rotate(-12deg);
}

.rider-map b {
  position: absolute;
  left: 16%;
  top: 48%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  animation: riderMapMove 11s ease-in-out infinite;
}

.rider-bike-symbol {
  display: block;
  transform: scaleX(-1);
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #3ad29f;
  box-shadow: 0 0 0 9px rgba(58, 210, 159, 0.16);
}

.node-pickup {
  left: 22px;
  top: 55%;
}

.node-drop {
  right: 22px;
  top: 34%;
  background: var(--hot);
  box-shadow: 0 0 0 9px rgba(248, 91, 138, 0.14);
}

.rider-status-stack {
  min-height: 50px;
}

.status-rider-wait {
  animation: riderWaitStatus 11s ease-in-out infinite;
}

.status-rider-pickup {
  background: rgba(255, 184, 76, 0.2);
  color: #ffe1aa;
  animation: riderPickupStatus 11s ease-in-out infinite;
}

.status-rider-going {
  background: rgba(58, 210, 159, 0.18);
  color: #b8f7de;
  animation: riderGoingStatus 11s ease-in-out infinite;
}

.device-pop {
  position: absolute;
  z-index: 8;
  --pop-x: 0;
  min-width: 126px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.13);
  padding: 11px 15px;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translate(var(--pop-x), 14px) scale(0.94);
  animation-duration: 11s;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-iteration-count: infinite;
}

.device-pop-customer {
  left: 50%;
  bottom: 100%;
  --pop-x: -50%;
  transform-origin: center bottom;
  animation-name: lifecyclePopOrder;
}

.device-pop-accepted {
  right: 22px;
  top: 24px;
  animation-name: lifecyclePopAccepted;
}

.device-pop-preparing {
  left: 50%;
  top: 46%;
  --pop-x: -50%;
  animation-name: lifecyclePopPreparing;
}

.device-pop-ready {
  right: 24px;
  bottom: 28px;
  animation-name: lifecyclePopReady;
}

.device-pop-earning {
  left: 50%;
  top: -54px;
  --pop-x: -50%;
  min-width: 112px;
  border: 1px solid rgba(4, 120, 87, 0.16);
  background: #ecfdf5;
  color: #047857;
  font-size: 1.05rem;
  font-weight: 900;
  animation-name: lifecyclePopEarning;
}

.device-pop-earning strong {
  font-weight: 900;
}

.device-pop-pickup {
  left: 50%;
  bottom: 100%;
  --pop-x: -50%;
  transform-origin: center bottom;
  animation-name: lifecyclePopPickup;
}

.device-pop-rider-route {
  right: 52%;
  top: 100%;
  --pop-x: 0;
  transform-origin: center top;
  animation-name: lifecyclePopRiderRoute;
}

.lifecycle-complete {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 36px;
  border-radius: 999px;
  background: #111827;
  color: var(--white);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.18);
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 900;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  animation: lifecycleComplete 11s ease-in-out infinite;
}

.lifecycle-route {
  position: absolute;
  z-index: 2;
  height: 150px;
  border-radius: 999px;
  background: none;
  box-shadow: none;
  overflow: visible;
  pointer-events: none;
}

.lifecycle-route::before,
.lifecycle-route::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 9px rgba(248, 91, 138, 0.1);
  transform: translateY(-50%);
  display: none;
}

.lifecycle-route::before {
  left: -2px;
}

.lifecycle-route::after {
  right: -2px;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(255, 184, 76, 0.1);
}

.route-customer-restaurant {
  left: 21%;
  top: 34%;
  width: 27%;
  transform: rotate(-7deg);
}

.route-restaurant-rider {
  right: 20%;
  top: 34%;
  width: 27%;
  transform: rotate(7deg);
}

.route-rider-customer {
  left: 19%;
  top: 62%;
  width: 62%;
  transform: rotate(-5deg);
}

.route-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow:
    0 0 0 8px rgba(248, 91, 138, 0.1),
    0 0 28px rgba(248, 91, 138, 0.42);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: routePulse 11s ease-in-out infinite;
}

.route-pulse-order {
  animation-delay: 0s;
}

.route-package {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
  font-size: 1.65rem;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  animation: packageMove 11s ease-in-out infinite;
}

.delivery-rider {
  position: absolute;
  z-index: 6;
  left: 78%;
  top: 65%;
  --ride-hop-x: -18px;
  --ride-hop-y: 14px;
  --ride-mid-x: -245px;
  --ride-mid-y: 115px;
  --ride-x: -635px;
  --ride-y: 72px;
  --ride-end-x: -690px;
  --ride-end-y: 78px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.16);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.86);
  animation: deliveryRide 11s ease-in-out infinite;
}

.delivery-rider-symbol {
  display: block;
  font-size: 1.65rem;
}

.delivery-rider img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes lifecycleDeviceFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(-4deg);
  }
  50% {
    transform: translateY(calc(-50% - 12px)) rotate(-2deg);
  }
}

@keyframes lifecycleDeviceFloatRider {
  0%,
  100% {
    transform: translateY(-50%) rotate(5deg);
  }
  50% {
    transform: translateY(calc(-50% - 12px)) rotate(3deg);
  }
}

@keyframes restaurantGlow {
  0%,
  16%,
  72%,
  100% {
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.14);
  }
  22%,
  56% {
    box-shadow:
      0 32px 76px rgba(248, 91, 138, 0.14),
      0 0 0 10px rgba(248, 91, 138, 0.04);
  }
}

@keyframes orderTapPulse {
  0%,
  8%,
  100% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.96);
  }
  14% {
    transform: scale(1.02);
  }
}

@keyframes customerStartStatus {
  0%,
  7% {
    opacity: 1;
    transform: translateY(0);
  }
  10%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes customerPlacedStatus {
  0%,
  9%,
  91%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
  12%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes customerDeliveredStatus {
  0%,
  88% {
    opacity: 0;
    transform: translateY(10px);
  }
  93%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orderTicketIn {
  0%,
  18% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  22%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes kitchenLoaderShow {
  0%,
  27%,
  55%,
  100% {
    opacity: 0;
  }
  33%,
  49% {
    opacity: 1;
  }
}

@keyframes kitchenProgress {
  0%,
  30% {
    width: 12%;
  }
  49%,
  100% {
    width: 100%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stepSpinnerHidden {
  0%,
  100% {
    opacity: 0;
  }
}

@keyframes stepAcceptedActive {
  0%,
  19%,
  100% {
    background: rgba(17, 24, 39, 0.05);
    color: var(--text);
  }
  23%,
  32% {
    background: rgba(58, 210, 159, 0.17);
    color: #047857;
  }
}

@keyframes stepAcceptedSpinner {
  0%,
  21%,
  34%,
  100% {
    opacity: 0;
  }
  24%,
  31% {
    opacity: 1;
  }
}

@keyframes stepPreparingActive {
  0%,
  33%,
  100% {
    background: rgba(17, 24, 39, 0.05);
    color: var(--text);
  }
  38%,
  49% {
    background: rgba(255, 184, 76, 0.18);
    color: #9a5b00;
  }
}

@keyframes stepPreparingSpinner {
  0%,
  36%,
  51%,
  100% {
    opacity: 0;
  }
  39%,
  48% {
    opacity: 1;
  }
}

@keyframes stepReadyActive {
  0%,
  50%,
  100% {
    background: rgba(17, 24, 39, 0.05);
    color: var(--text);
  }
  55%,
  67% {
    background: rgba(58, 210, 159, 0.18);
    color: #047857;
  }
}

@keyframes stepReadySpinner {
  0%,
  53%,
  69%,
  100% {
    opacity: 0;
  }
  56%,
  66% {
    opacity: 1;
  }
}

@keyframes riderMapMove {
  0%,
  70% {
    left: 16%;
    top: 58%;
  }
  80% {
    left: 44%;
    top: 42%;
  }
  92%,
  100% {
    left: 82%;
    top: 34%;
  }
}

@keyframes riderWaitStatus {
  0%,
  66%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
  69%,
  73% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riderPickupStatus {
  0%,
  71%,
  81%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
  74%,
  79% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riderGoingStatus {
  0%,
  79%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
  83%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lifecyclePopOrder {
  0%,
  7%,
  19%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  10%,
  16% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopAccepted {
  0%,
  20%,
  33%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  23%,
  30% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopPreparing {
  0%,
  34%,
  49%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  38%,
  46% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopReady {
  0%,
  51%,
  65%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  55%,
  62% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopEarning {
  0%,
  57%,
  70%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  60%,
  67% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopPickup {
  0%,
  69%,
  81%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  72%,
  78% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecyclePopRiderRoute {
  0%,
  78%,
  92%,
  100% {
    opacity: 0;
    transform: translate(var(--pop-x), 14px) scale(0.94);
  }
  82%,
  89% {
    opacity: 1;
    transform: translate(var(--pop-x), 0) scale(1);
  }
}

@keyframes lifecycleComplete {
  0%,
  88%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  93%,
  98% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes routePulse {
  0%,
  10%,
  100% {
    left: 0;
    top: 50%;
    opacity: 0;
  }
  13% {
    opacity: 1;
    top: 30%;
  }
  19% {
    left: 52%;
    top: 18%;
    opacity: 1;
  }
  25% {
    left: 100%;
    top: 50%;
    opacity: 1;
  }
  29% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes packageMove {
  0%,
  57%,
  100% {
    left: 0;
    top: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
  }
  61% {
    opacity: 1;
    top: 36%;
    transform: translate(-50%, -50%) scale(1);
  }
  66% {
    left: 52%;
    top: 18%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
  70% {
    left: 100%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  73% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
  }
}

@keyframes deliveryRide {
  0%,
  74% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  78% {
    opacity: 1;
    transform: translate3d(var(--ride-hop-x), var(--ride-hop-y), 0) scale(1);
  }
  87% {
    opacity: 1;
    transform: translate3d(var(--ride-mid-x), var(--ride-mid-y), 0) scale(1);
  }
  96% {
    opacity: 1;
    transform: translate3d(var(--ride-x), var(--ride-y), 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--ride-end-x), var(--ride-end-y), 0) scale(0.92);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 820px;
  padding-top: 92px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 26px -110px -42px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 249, 250, 0.96) 0%,
    rgba(248, 249, 250, 0.82) 48%,
    rgba(248, 249, 250, 0) 72%
  );
  pointer-events: none;
}

.hero-live-layer {
  position: absolute;
  inset: 0;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
  z-index: 2;
}

.hero-route-line {
  position: absolute;
  left: 5%;
  right: auto;
  top: auto;
  bottom: 28%;
  width: min(420px, 32vw);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 91, 138, 0.36),
    rgba(255, 184, 76, 0.34),
    transparent
  );
  transform: rotate(8deg);
  opacity: 0.58;
}

.hero-route-line::before,
.hero-route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 10px rgba(248, 91, 138, 0.1);
  transform: translateY(-50%);
}

.hero-route-line::before {
  left: 18%;
}

.hero-route-line::after {
  right: 19%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(255, 184, 76, 0.12);
}

.hero-flow-packet {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow:
    0 0 0 9px rgba(248, 91, 138, 0.11),
    0 0 26px rgba(248, 91, 138, 0.44);
  transform: translate(-50%, -50%);
  animation: heroPacketMove 8.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.hero-flow-popups {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-status-popup {
  position: absolute;
  min-width: 142px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 14px;
  text-align: left;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: heroStatusPop 8.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hero-status-popup small,
.hero-status-popup strong {
  display: block;
}

.hero-status-popup small {
  color: var(--hot);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status-popup strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 900;
}

.popup-order {
  right: 4.5%;
  bottom: 43%;
  animation-delay: 0s;
}

.popup-accepted {
  right: 3.5%;
  top: 31%;
  animation-delay: 1.15s;
}

.popup-preparing {
  right: 3.5%;
  top: 43%;
  animation-delay: 2.35s;
}

.popup-ready {
  right: 4.5%;
  top: 55%;
  animation-delay: 3.55s;
}

.popup-pickup {
  left: 5.5%;
  bottom: 31%;
  animation-delay: 5s;
}

.popup-delivered {
  right: 3.5%;
  bottom: 22%;
  animation-delay: 6.45s;
}

.hero-signal-card {
  position: absolute;
  width: min(250px, 22vw);
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.08);
  padding: 20px;
  text-align: left;
  opacity: 0.86;
  animation:
    heroDrift 7s ease-in-out infinite,
    heroCardSync 8.4s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s), var(--flow-delay, 0s);
}

.hero-signal-card small {
  color: var(--hot);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-signal-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 900;
}

.signal-step-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.signal-step-row span {
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: var(--ink);
  padding: 5px 7px;
  font-size: 0.68rem;
  font-weight: 900;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #15c784;
  box-shadow: 0 0 0 8px rgba(21, 199, 132, 0.1);
}

.signal-order {
  left: 4.5%;
  top: 24%;
  --flow-delay: 0s;
  --float-delay: 0s;
}

.signal-kitchen {
  right: 4.5%;
  top: 25%;
  --flow-delay: 1.15s;
  --float-delay: -2.8s;
}

.signal-rider {
  left: 7%;
  bottom: 14%;
  --flow-delay: 5s;
  --float-delay: -5.2s;
}

.hero-phone-preview {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 170px;
  min-height: 294px;
  border-radius: 34px;
  background: #111827;
  color: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 34px 70px rgba(17, 24, 39, 0.18);
  padding: 18px 14px;
  text-align: left;
  opacity: 0.78;
  transform: rotate(7deg);
  animation:
    phoneFloat 6.5s ease-in-out infinite,
    phoneSync 8.4s ease-in-out infinite;
  animation-delay: 0s, 6.35s;
}

.phone-topbar {
  width: 54px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 auto 18px;
}

.phone-brand {
  color: var(--white);
  font-weight: 900;
  font-size: 1.12rem;
  margin-bottom: 18px;
}

.phone-food-card {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
}

.phone-food-card span {
  font-size: 2rem;
}

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

.phone-food-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.phone-food-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
}

.phone-status-stack {
  position: relative;
  min-height: 36px;
  margin-top: 14px;
}

.phone-status {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(58, 210, 159, 0.16);
  color: #b8f7de;
  padding: 8px 10px;
  font-size: 0.7rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  animation: phoneStatusSwap 8.4s ease-in-out infinite;
}

.phone-status-delivered {
  background: rgba(248, 91, 138, 0.2);
  color: #ffd5da;
  animation-delay: 6.4s;
}

.phone-progress {
  height: 8px;
  margin: 12px 0 20px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hot), var(--orange));
}

.phone-map-chip {
  display: inline-flex;
  border-radius: 99px;
  background: rgba(248, 91, 138, 0.18);
  color: #ffd5da;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

@keyframes heroPacketMove {
  0% {
    left: 8%;
    background: var(--hot);
  }
  26% {
    left: 70%;
    background: var(--orange);
  }
  54% {
    left: 52%;
    background: #3ad29f;
  }
  80%,
  100% {
    left: 88%;
    background: #2563eb;
  }
}

@keyframes heroStatusPop {
  0%,
  12% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  17%,
  31% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  38%,
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
}

@keyframes phoneStatusSwap {
  0%,
  16% {
    opacity: 0;
    transform: translateY(10px);
  }
  22%,
  48% {
    opacity: 1;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(2deg);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-18px);
  }
}

@keyframes heroCardSync {
  0%,
  14%,
  100% {
    opacity: 0.8;
    border-color: rgba(255, 255, 255, 0.84);
    box-shadow: 0 22px 46px rgba(17, 24, 39, 0.08);
  }
  18%,
  35% {
    opacity: 1;
    border-color: rgba(248, 91, 138, 0.34);
    box-shadow:
      0 24px 58px rgba(248, 91, 138, 0.16),
      0 0 0 8px rgba(248, 91, 138, 0.05);
  }
  48%,
  76% {
    opacity: 0.88;
  }
}

@keyframes phoneSync {
  0%,
  14%,
  100% {
    opacity: 0.66;
    box-shadow: 0 34px 70px rgba(17, 24, 39, 0.18);
  }
  18%,
  36% {
    opacity: 0.92;
    box-shadow:
      0 34px 74px rgba(17, 24, 39, 0.2),
      0 0 0 9px rgba(58, 210, 159, 0.08);
  }
}

.hero h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.15rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hot);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(248, 91, 138, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  padding: 9px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--hot);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 40px;
  font-weight: 400;
  text-wrap: pretty;
}

.hero-content > p:not(.hero-kicker) {
  margin-bottom: 0;
}

.store-icon {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid var(--hot);
}

.google-play-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.btn-play .google-play-icon {
  width: 24px;
  height: 24px;
}

.coverage-section {
  max-width: 1300px;
  margin: -18px auto 0;
  padding: 0 5% 78px;
}

.coverage-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  border-radius: 34px;
  background: var(--ink);
  color: var(--white);
  padding: 28px;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.18);
}

.coverage-copy {
  display: grid;
  align-content: center;
}

.coverage-copy .eyebrow {
  margin-bottom: 8px;
}

.coverage-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.7px;
  text-wrap: balance;
}

.coverage-copy p:not(.eyebrow),
.coverage-request-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
  margin-top: 10px;
}

.coverage-area-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 12px;
}

.coverage-request-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.coverage-request-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-request-title strong {
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 900;
}

.coverage-info {
  position: relative;
}

.coverage-info summary {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

.coverage-info summary::-webkit-details-marker {
  display: none;
}

.coverage-info p {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(320px, 80vw);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
  padding: 14px;
  font-size: 0.84rem;
}

.coverage-reward-copy {
  max-width: 760px;
}

.coverage-reward-amount {
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
  border-radius: 999px;
  background: rgba(58, 210, 159, 0.16);
  color: #86efac;
  padding: 2px 10px;
  font-size: 1.08em;
  font-weight: 900;
  white-space: nowrap;
}

.coverage-request-card .btn-main {
  flex: 0 0 auto;
  background: var(--brand-orange);
}

.join-path-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 5% 110px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.join-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1)),
    radial-gradient(
      circle at 18% 14%,
      rgba(248, 91, 138, 0.13),
      transparent 34%
    );
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
  padding: 32px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(248, 91, 138, 0.16),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.join-card:nth-child(2)::before {
  background: linear-gradient(
    135deg,
    rgba(255, 184, 76, 0.18),
    transparent 44%
  );
}

.join-card:nth-child(3)::before {
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.16),
    transparent 44%
  );
}

.join-card::after {
  content: "↗";
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--hot);
  font-size: 1.8rem;
  font-weight: 900;
  transform: translate(8px, -8px);
  opacity: 0.32;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.join-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.join-card:hover::before {
  opacity: 1;
}

.join-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.join-card span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(248, 91, 138, 0.1);
  font-size: 2.5rem;
  margin-bottom: 26px;
  box-shadow: inset 0 0 0 1px rgba(248, 91, 138, 0.08);
}

.join-card strong {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-wrap: balance;
}

.join-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.area-zone-strip {
  margin-top: 28px;
  border-radius: 34px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.area-zone-strip .eyebrow {
  margin-bottom: 8px;
}

.area-zone-strip h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.7px;
  text-wrap: balance;
}

.area-zone-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.area-chip {
  min-width: 132px;
  display: grid;
  gap: 2px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
}

.area-chip strong {
  font-size: 1rem;
  line-height: 1.1;
}

.area-chip small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.area-chip.area-active small {
  color: #7ff0c7;
}

.area-chip.area-coming_soon small {
  color: #ffd36b;
}

.magic-scroll-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
  isolation: isolate;
}

.scroll-texts {
  width: 50%;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.step-block {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.step-block.active {
  opacity: 1;
}

.step-block h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
  line-height: 1.05;
  text-wrap: balance;
  word-break: normal;
}

.step-block p {
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.6;
  text-wrap: pretty;
}

.reset-step {
  height: 0;
  margin: 0;
  padding: 0;
}

.scroll-visual {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
}

.visual-glow {
  position: absolute;
  inset: 12% 6%;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 42% 44%,
      rgba(248, 91, 138, 0.24),
      transparent 48%
    ),
    radial-gradient(
      circle at 62% 58%,
      rgba(255, 184, 76, 0.22),
      transparent 46%
    );
  filter: blur(12px);
  opacity: 0.95;
  animation: glowPulse 5s ease-in-out infinite;
}

.magic-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  max-width: 520px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.magic-device-scene {
  display: grid;
  place-items: center;
}

.scene-phone {
  width: min(100%, 270px);
  aspect-ratio: 9 / 16;
  border-radius: 42px;
  background: #111827;
  border: 10px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 34px 80px rgba(17, 24, 39, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 18px 16px;
  position: relative;
  transform: rotate(-3deg);
}

.phone-notch {
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 18px;
}

.scene-phone-screen {
  min-height: calc(100% - 28px);
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(248, 91, 138, 0.28),
      transparent 34%
    ),
    #f8f9fa;
  padding: 22px 18px;
  text-align: center;
}

.scene-mini-label,
.delivery-status small {
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.scene-phone-screen strong {
  max-width: 190px;
  margin: 9px 0 16px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.12;
  font-weight: 900;
}

.scene-phone-screen small {
  color: var(--muted);
  font-weight: 800;
}

.scene-qr-box {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(17, 24, 39, 0.08),
    0 22px 42px rgba(17, 24, 39, 0.12);
  margin-bottom: 14px;
}

.scene-qr-box img {
  width: 132px;
  height: 132px;
}

.desktop-device {
  width: min(100%, 520px);
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 34px 80px rgba(17, 24, 39, 0.18);
  padding: 12px;
  transform: rotate(1deg);
}

.desktop-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 12px;
}

.desktop-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.desktop-topbar strong {
  margin-left: 10px;
  font-size: 0.86rem;
}

.dashboard-screen {
  min-height: 300px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  overflow: hidden;
  border-radius: 22px;
  background: #f8f9fa;
  padding: 14px;
}

.dashboard-screen aside {
  display: grid;
  align-content: start;
  gap: 14px;
  border-right: 1px solid rgba(17, 24, 39, 0.08);
  padding-right: 12px;
}

.dashboard-screen aside b {
  font-size: 0.88rem;
}

.dashboard-screen aside span,
.dashboard-actions i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.1);
}

.dashboard-screen main {
  display: grid;
  gap: 14px;
}

.dashboard-actions,
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-actions i {
  height: 24px;
  background: rgba(17, 24, 39, 0.08);
}

.dashboard-kpis span {
  min-height: 86px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: var(--white);
  padding: 14px;
}

.dashboard-kpis b,
.dashboard-kpis em {
  display: block;
}

.dashboard-kpis b {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.dashboard-kpis em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.dashboard-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dashboard-platforms span {
  display: grid;
  gap: 4px;
  border-radius: 16px;
  background: #111827;
  color: var(--white);
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dashboard-platforms span + span {
  background: linear-gradient(135deg, var(--hot), var(--orange));
}

.dashboard-platforms strong,
.dashboard-platforms small {
  display: block;
}

.dashboard-platforms strong {
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 900;
}

.dashboard-platforms small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 800;
}

.dashboard-chart {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: var(--white);
  padding: 16px;
}

.dashboard-chart svg {
  width: 100%;
  height: 118px;
}

.dashboard-chart path:first-child {
  fill: none;
  stroke: #2563eb;
  stroke-width: 5;
  stroke-linecap: round;
}

.dashboard-chart path:last-child {
  fill: rgba(37, 99, 235, 0.13);
  stroke: none;
}

.delivery-map-card {
  width: min(100%, 430px);
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.78)
    ),
    repeating-linear-gradient(
      30deg,
      rgba(17, 24, 39, 0.06) 0 2px,
      transparent 2px 44px
    );
  box-shadow: 0 34px 80px rgba(17, 24, 39, 0.15);
  padding: 28px;
}

.map-route {
  position: absolute;
  inset: 42px 42px 120px;
}

.map-route::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 45%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), var(--orange), #15c784);
  transform: rotate(-18deg);
}

.map-route i {
  position: absolute;
  left: 42%;
  top: 22%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(248, 91, 138, 0.14);
  box-shadow: 0 0 0 16px rgba(248, 91, 138, 0.08);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 10px rgba(248, 91, 138, 0.12);
}

.map-pin.pickup {
  left: 12%;
  top: 57%;
}

.map-pin.dropoff {
  right: 12%;
  top: 24%;
  background: #15c784;
  box-shadow: 0 0 0 10px rgba(21, 199, 132, 0.12);
}

.delivery-map-card > img {
  position: absolute;
  left: 50%;
  top: 37%;
  width: 150px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 28px rgba(17, 24, 39, 0.16));
}

.delivery-status {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  padding: 20px;
}

.delivery-status strong,
.delivery-status span {
  display: block;
}

.delivery-status strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
}

.delivery-status span {
  margin-top: 10px;
  color: #118f64;
  font-weight: 900;
}

.magic-status-card {
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 4;
  min-width: 260px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
  padding: 16px 20px;
  text-align: center;
}

.magic-status-card span {
  display: block;
  color: var(--hot);
  font-size: 0.72rem;
  font-weight: 900;
}

.magic-status-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.magic-img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  animation: floatSmooth 4s ease-in-out infinite;
}

@keyframes floatSmooth {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1.1) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) translateY(-20px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.floating-food-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.scene-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.scene-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.float-item {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(42px, 5.5vw, 76px);
  height: clamp(42px, 5.5vw, 76px);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.32)
    ),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  opacity: 0.46;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 46px rgba(17, 24, 39, 0.08);
  filter: blur(0.1px) drop-shadow(0 20px 24px rgba(17, 24, 39, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: sceneFloat 8s ease-in-out infinite;
}

.float-item.item-a {
  left: 3%;
  top: 8%;
  animation-delay: -0.4s;
}

.float-item.item-b {
  right: 7%;
  top: 9%;
  animation-delay: -2.2s;
}

.float-item.item-c {
  left: 5%;
  top: 40%;
  animation-delay: -4.2s;
}

.float-item.item-d {
  right: 4%;
  top: 45%;
  animation-delay: -1.2s;
}

.float-item.item-e {
  left: 32%;
  bottom: 7%;
  animation-delay: -3.2s;
}

.float-item.item-f {
  right: 27%;
  bottom: 15%;
  animation-delay: -5.4s;
}

.float-item.item-g {
  left: 20%;
  top: 21%;
  animation-delay: -6.1s;
}

.float-item.item-h {
  right: 18%;
  bottom: 36%;
  animation-delay: -1.8s;
}

.float-item.item-i {
  left: 52%;
  top: 13%;
  animation-delay: -4.9s;
}

@keyframes sceneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(12px, -24px, 0) rotate(8deg);
  }
}

.ecosystem-section,
.process-section,
.faq-section {
  padding: 150px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.sec-title {
  text-align: center;
  margin-bottom: 80px;
}

.sec-title h2 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  text-wrap: balance;
}

.sec-title p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--text);
  font-size: 1.15rem;
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  .hero-flow-packet,
  .hero-status-popup,
  .phone-status,
  .hero-signal-card,
  .hero-phone-preview {
    animation: none;
  }

  .hero-status-popup,
  .phone-status-order {
    opacity: 1;
    transform: none;
  }

  .phone-status-delivered {
    display: none;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.bento-card {
  min-height: 320px;
  background: var(--white);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--hot), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--hot);
}

.bento-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.bento-card p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.card-link {
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.3s,
    gap 0.3s;
}

.bento-card:hover .card-link,
.card-link:hover {
  color: var(--hot);
  gap: 12px;
}

.partner-cta {
  margin: 0 5% 100px;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  border-radius: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 430px;
}

.partner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(42px, 6vw, 80px);
}

.partner-content h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-wrap: balance;
  word-break: normal;
}

.partner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--soft);
  line-height: 1.65;
  max-width: 660px;
  text-wrap: pretty;
}

.partner-content .btn-main {
  background: var(--brand-orange);
  padding: 15px 35px;
  border: none;
}

.partner-bg-img {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.58;
  z-index: 1;
  align-self: stretch;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.download-band {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 70px 5%;
  background: var(--white);
  border-radius: 40px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.onboarding-rzn {
  background: var(--brand-orange) !important;
}

.download-guide-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 5% 90px;
}

.download-guide-copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-wrap: balance;
}

.download-guide-copy p:not(.hero-kicker) {
  max-width: 700px;
  margin: 24px 0 34px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.62;
}

.download-guide-visual {
  display: grid;
  gap: 18px;
  align-self: center;
}

.download-video-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  border: 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.84)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=900")
      center/cover;
  color: var(--white);
  padding: 34px;
  text-align: left;
  box-shadow: 0 34px 80px rgba(17, 24, 39, 0.18);
  transform: rotate(1.5deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.download-video-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 42px 90px rgba(17, 24, 39, 0.24);
}

.video-play {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--hot);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(248, 91, 138, 0.35);
}

.download-video-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.download-video-card strong {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.download-qr-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
  padding: 18px;
}

.download-qr-card img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: var(--white);
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.download-qr-card small {
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-qr-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.18;
  font-weight: 900;
}

.download-qr-card p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.download-steps-section,
.download-feature-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 5%;
}

.download-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-step {
  min-height: 280px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.download-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.download-step span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.download-step h3 {
  font-size: 1.6rem;
  line-height: 1.14;
  font-weight: 900;
  margin-bottom: 14px;
}

.download-step p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.customer-offer-section {
  max-width: 1200px;
  margin: 20px auto 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 184, 76, 0.28),
      transparent 28%
    ),
    var(--ink);
  color: var(--white);
  padding: 48px;
}

.customer-offer-section h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.customer-offer-section p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
  line-height: 1.62;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 5%;
}

.video-modal.is-open {
  display: grid;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.video-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.video-dialog.video-portrait {
  width: min(100%, 430px);
  max-height: 88vh;
  aspect-ratio: 9 / 16;
  border-radius: 34px;
}

.video-dialog.video-landscape {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
}

.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.video-close {
  position: absolute;
  right: -16px;
  top: -16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.download-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-wrap: balance;
}

.download-copy p {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  text-wrap: pretty;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.store-button {
  min-width: 190px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  transition: all 0.3s;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(17, 24, 39, 0.18);
}

.store-button + .store-button {
  background: var(--hot);
}

.store-kicker {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.store-button strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.page-hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 20% auto auto 50%;
  width: min(680px, 70vw);
  height: min(680px, 70vw);
  background: radial-gradient(
    circle,
    rgba(248, 91, 138, 0.18),
    transparent 64%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-wrap: balance;
  word-break: normal;
}

.page-hero p {
  color: var(--text);
  font-size: 1.3rem;
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.6;
  text-wrap: pretty;
}

.eyebrow {
  color: var(--hot);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.platform-preview-section {
  max-width: 1280px;
  margin: -30px auto 20px;
  padding: 70px 5%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.platform-preview-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
  text-wrap: balance;
}

.platform-preview-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.platform-points span {
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 900;
}

.owner-platform-visual,
.rider-mobile-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 22% 20%,
      rgba(248, 91, 138, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 184, 76, 0.24),
      transparent 34%
    ),
    #f8f9fa;
  box-shadow: var(--shadow);
}

.owner-platform-visual::before,
.rider-mobile-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  pointer-events: none;
}

.owner-web-panel {
  width: min(82%, 560px);
  border-radius: 26px;
  background: #111827;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.18);
  transform: rotate(-1.5deg) translateX(-22px);
}

.owner-web-top {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 12px;
}

.owner-web-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.owner-web-top strong {
  margin-left: 8px;
  font-size: 0.86rem;
}

.owner-web-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: 20px;
  background: var(--white);
  padding: 16px;
}

.owner-web-body div,
.owner-web-body p {
  border-radius: 16px;
  background: #f8f9fa;
  padding: 16px;
}

.owner-web-body p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--hot);
  font-weight: 900;
}

.owner-web-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
}

.owner-web-body strong {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.owner-mobile-panel,
.rider-preview-phone {
  width: 185px;
  min-height: 324px;
  position: absolute;
  right: 48px;
  bottom: 38px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-radius: 34px;
  background: #111827;
  color: var(--white);
  border: 7px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 70px rgba(17, 24, 39, 0.22);
  padding: 18px 16px;
  transform: rotate(6deg);
}

.owner-phone-notch {
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 auto 8px;
}

.owner-mobile-panel strong,
.rider-preview-phone strong {
  font-size: 1.15rem;
  line-height: 1.08;
  font-weight: 900;
}

.owner-mobile-panel p,
.rider-preview-phone p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-weight: 800;
}

.owner-mobile-panel span,
.rider-preview-phone button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--hot);
  color: var(--white);
  padding: 10px 13px;
  font-size: 0.8rem;
  font-weight: 900;
}

.rider-mobile-visual {
  background:
    radial-gradient(
      circle at 20% 24%,
      rgba(58, 210, 159, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 74% 70%,
      rgba(248, 91, 138, 0.24),
      transparent 34%
    ),
    #f8f9fa;
}

.rider-preview-phone {
  position: relative;
  right: auto;
  bottom: auto;
  width: 245px;
  min-height: 430px;
  transform: rotate(-4deg);
}

.rider-preview-phone small {
  color: #7ff0c7;
  font-weight: 900;
  text-transform: uppercase;
}

.rider-route-line {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.rider-route-line span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 6px rgba(248, 91, 138, 0.16);
}

.rider-route-line span:last-child {
  background: #3ad29f;
  box-shadow: 0 0 0 6px rgba(58, 210, 159, 0.16);
}

.rider-route-line i {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), #3ad29f);
}

.process-section {
  padding-top: 80px;
}

.form-section,
.contact-grid-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 5% 140px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.05fr);
  align-items: start;
  gap: 44px;
}

.form-intro {
  position: sticky;
  top: 130px;
}

.form-intro h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-wrap: balance;
}

.form-intro p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.65;
}

.lead-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-strong);
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.form-heading h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 10px;
}

.form-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: #f8f9fa;
  color: var(--ink);
  padding: 13px 16px;
  outline: none;
  transition:
    background 0.25s,
    border 0.25s,
    box-shadow 0.25s;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  background: var(--white);
  border-color: var(--hot);
  box-shadow: 0 0 0 4px rgba(248, 91, 138, 0.12);
}

.lead-form label.has-error input,
.lead-form label.has-error textarea,
.lead-form label.has-error select {
  border-color: var(--hot);
  box-shadow: 0 0 0 4px rgba(248, 91, 138, 0.12);
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: #118f64;
}

.form-status.is-error {
  color: var(--hot);
}

.form-submit {
  width: 100%;
  min-height: 56px;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-submit.is-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.faq-section {
  padding-top: 80px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0 24px;
  font-weight: 900;
  font-size: 1.1rem;
}

.faq-item button strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(248, 91, 138, 0.1);
  color: var(--hot);
  flex: 0 0 auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  padding: 0 24px 24px;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  max-height: 260px;
}

.contact-grid-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
}

.contact-cards {
  display: grid;
  gap: 24px;
}

.contact-cards .bento-card {
  min-height: 230px;
}

.contact-phone-card {
  min-height: 190px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 184, 76, 0.2), transparent 38%),
    var(--ink);
  color: var(--white);
}

.contact-phone-card h3,
.contact-phone-card .card-link {
  color: var(--white);
}

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

.contact-phone-card .card-icon {
  color: var(--brand-yellow);
}

.system-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 160px 5% 80px;
}

.system-page h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.system-page p {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 26px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 70px 5% 28px;
}

.footer-shell,
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 34px;
}

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

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

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  color: var(--soft);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  font-size: 1rem;
  color: var(--white);
}

.footer-column a {
  color: var(--soft);
  font-weight: 700;
  transition: color 0.3s;
}

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

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-link:hover {
  transform: translateY(-4px);
  background: var(--brand-orange);
  color: var(--brand-black);
  box-shadow: 0 18px 34px rgba(255, 184, 76, 0.28);
}

.social-instagram:hover,
.social-tiktok:hover,
.social-linkedin:hover,
.social-facebook:hover {
  background: var(--brand-pink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(248, 91, 138, 0.28);
}

.social-snapchat:hover {
  background: var(--brand-yellow);
  color: var(--brand-black);
}

.footer-phone {
  margin-top: auto;
  padding-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: var(--soft);
  font-size: 0.92rem;
}

.gs-up {
  animation: heroUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gs-up:nth-child(2) {
  animation-delay: 0.12s;
}

.gs-up:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .lifecycle-demo {
    width: min(1160px, 100%);
  }

  .lifecycle-phone {
    width: clamp(152px, 15vw, 190px);
    min-height: 300px;
  }

  .restaurant-preview {
    width: min(400px, 35vw);
    min-height: 314px;
    padding: 0;
  }

  .delivery-rider {
    --ride-x: -560px;
    --ride-y: 74px;
    --ride-end-x: -605px;
    --ride-end-y: 84px;
  }

  .hero-signal-card {
    width: min(220px, 20vw);
  }

  .hero-phone-preview {
    right: 3%;
    width: 142px;
    min-height: 236px;
    border-width: 6px;
    opacity: 0.34;
  }

  .phone-food-card {
    padding: 9px;
  }
}

@media (max-width: 1120px) {
  .hero-live-layer {
    display: none;
  }

  .nav-links {
    gap: 16px;
  }

  .playstore-btn {
    display: none;
  }

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

@media (max-width: 900px) {
  .site-nav {
    top: 12px;
    width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 28px;
  }

  .nav-shell {
    gap: 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: auto;
    right: 12px;
    z-index: 1002;
    width: min(330px, calc(100vw - 24px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(14px, -10px, 0) scale(0.97);
    transform-origin: top right;
    transition:
      opacity 0.28s ease,
      transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0.28s;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(248, 249, 250, 0.82);
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
  }

  .nav-links a::after {
    content: "→";
    color: var(--hot);
    font-weight: 900;
    opacity: 0.66;
  }

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

  .hero-live-layer {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding: 0 4%;
  }

  .lifecycle-demo {
    height: 760px;
    min-height: 760px;
    margin-top: 86px;
    border-radius: 0;
  }

  .lifecycle-phone {
    width: 158px;
    min-height: 286px;
    border-width: 6px;
    border-radius: 30px;
    padding: 14px 11px;
  }

  .customer-preview {
    left: 5%;
    top: 24%;
  }

  .restaurant-preview {
    left: 50%;
    top: 47%;
    width: min(88%, 430px);
    min-height: 290px;
    border-radius: 28px;
    padding: 0;
  }

  .restaurant-panel-body {
    grid-template-columns: 96px 1fr;
    min-height: 246px;
  }

  .restaurant-side {
    padding: 15px 12px;
  }

  .restaurant-main {
    padding: 15px;
  }

  .rider-preview {
    right: 5%;
    top: 78%;
  }

  .device-brand {
    margin-bottom: 12px;
    font-size: 0.98rem;
  }

  .food-ticket {
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .food-emoji {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 1.45rem;
  }

  .order-tap {
    min-height: 42px;
    margin: 12px 0;
    border-radius: 15px;
  }

  .restaurant-step-list {
    gap: 7px;
  }

  .restaurant-step {
    min-height: 42px;
    border-radius: 14px;
    font-size: 0.72rem;
  }

  .rider-map {
    height: 116px;
    border-radius: 22px;
  }

  .route-customer-restaurant {
    left: 24%;
    top: 18%;
    width: 30%;
    transform: rotate(18deg);
  }

  .route-restaurant-rider {
    right: 18%;
    top: 49%;
    width: 32%;
    transform: rotate(28deg);
  }

  .route-rider-customer {
    left: 22%;
    top: 61%;
    width: 58%;
    transform: rotate(-7deg);
  }

  .delivery-rider {
    left: 71%;
    top: 70%;
    --ride-hop-x: 8px;
    --ride-hop-y: -16px;
    --ride-mid-x: -62px;
    --ride-mid-y: -190px;
    --ride-x: -250px;
    --ride-y: -330px;
    --ride-end-x: -280px;
    --ride-end-y: -350px;
  }

  .device-pop-customer {
    top: 100%;
    bottom: auto;
  }

  .lifecycle-complete {
    bottom: 18px;
    width: calc(100% - 40px);
    max-width: 320px;
    text-align: center;
  }

  .magic-scroll-container {
    flex-direction: column;
  }

  .scroll-texts,
  .scroll-visual {
    width: 100%;
  }

  .scroll-visual {
    height: 50vh;
    position: relative;
  }

  .visual-wrapper {
    height: 54vh;
  }

  .magic-img {
    max-width: min(100%, 440px);
  }

  .floating-food-scene {
    opacity: 0.76;
  }

  .float-item {
    width: clamp(38px, 9vw, 62px);
    height: clamp(38px, 9vw, 62px);
    border-radius: 20px;
    font-size: clamp(1.25rem, 5vw, 2.1rem);
  }

  .scene-phone {
    width: min(100%, 220px);
  }

  .desktop-device {
    transform: none;
  }

  .delivery-map-card {
    min-height: 340px;
  }

  .step-block {
    height: auto;
    margin-bottom: 80px;
    text-align: center;
    opacity: 1;
  }

  .cards-grid,
  .join-grid,
  .four-grid {
    grid-template-columns: 1fr;
  }

  .coverage-shell {
    grid-template-columns: 1fr;
  }

  .coverage-area-list {
    justify-content: flex-start;
  }

  .coverage-request-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .area-zone-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .area-zone-list {
    justify-content: center;
  }

  .partner-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 20px;
  }

  .partner-content {
    max-width: 100%;
    padding: 0;
  }

  .partner-bg-img {
    position: relative;
    width: 100%;
    height: 260px;
    min-height: 260px;
    top: auto;
    margin-top: 36px;
    border-radius: 28px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .download-band,
  .form-section,
  .contact-grid-section,
  .download-guide-hero,
  .platform-preview-section {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .platform-preview-section {
    margin-top: 0;
    gap: 34px;
  }

  .platform-points {
    justify-content: center;
  }

  .owner-web-panel {
    width: min(92%, 560px);
    transform: none;
  }

  .owner-mobile-panel {
    right: 28px;
    bottom: 24px;
  }

  .download-guide-copy p:not(.hero-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .download-guide-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .download-video-card {
    min-height: 420px;
    transform: none;
  }

  .download-qr-card {
    text-align: left;
  }

  .download-steps-grid {
    grid-template-columns: 1fr;
  }

  .customer-offer-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-actions {
    justify-content: center;
  }

  .form-intro {
    position: static;
  }

  .lead-form {
    max-width: none;
    justify-self: stretch;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  * {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  .logo {
    font-size: 1.45rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .language-switch button {
    padding: 7px 8px;
  }

  .hero {
    min-height: 840px;
  }

  .hero-live-layer {
    display: none;
  }

  .float-item.item-g,
  .float-item.item-h,
  .float-item.item-i {
    display: none;
  }

  .lifecycle-demo {
    height: 720px;
    min-height: 720px;
    margin-top: 88px;
    border-radius: 0;
  }

  .customer-preview {
    left: 4%;
    top: 22%;
  }

  .rider-preview {
    right: 4%;
    top: 80%;
  }

  .lifecycle-phone {
    width: 142px;
    min-height: 260px;
  }

  .restaurant-preview {
    top: 47%;
    width: 92%;
    min-height: 274px;
    padding: 0;
  }

  .restaurant-browser-bar {
    min-height: 38px;
  }

  .restaurant-panel-body {
    grid-template-columns: 78px 1fr;
    min-height: 236px;
  }

  .restaurant-side {
    padding: 12px 9px;
  }

  .restaurant-side strong {
    font-size: 0.72rem;
  }

  .restaurant-side span,
  .restaurant-side small {
    font-size: 0.58rem;
  }

  .restaurant-main {
    gap: 10px;
    padding: 12px;
  }

  .restaurant-head {
    gap: 10px;
  }

  .restaurant-order-card {
    padding: 14px;
    border-radius: 20px;
  }

  .restaurant-order-card strong {
    font-size: 0.9rem;
  }

  .restaurant-order-card span {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .device-pop {
    min-width: 104px;
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .device-pop-preparing {
    left: 36%;
  }

  .device-pop-ready {
    right: 14px;
    bottom: 18px;
  }

  .delivery-rider {
    width: 46px;
    height: 46px;
    --ride-hop-x: 6px;
    --ride-hop-y: -14px;
    --ride-mid-x: -48px;
    --ride-mid-y: -186px;
    --ride-x: -214px;
    --ride-y: -322px;
    --ride-end-x: -236px;
    --ride-end-y: -344px;
  }

  .dashboard-screen {
    min-height: 250px;
    grid-template-columns: 72px 1fr;
  }

  .dashboard-kpis b {
    font-size: 1.05rem;
  }

  .dashboard-chart svg {
    height: 110px;
  }

  .delivery-map-card > img {
    width: 118px;
  }

  .hero p,
  .step-block p,
  .page-hero p {
    font-size: 1.05rem;
  }

  .scroll-visual {
    height: 420px;
  }

  .visual-wrapper {
    height: 400px;
  }

  .scene-phone {
    width: 198px;
    border-radius: 34px;
    border-width: 7px;
  }

  .scene-qr-box {
    width: 128px;
    height: 128px;
    border-radius: 22px;
  }

  .scene-qr-box img {
    width: 108px;
    height: 108px;
  }

  .desktop-device {
    width: min(100%, 350px);
    border-radius: 24px;
  }

  .desktop-topbar {
    height: 34px;
  }

  .dashboard-screen {
    grid-template-columns: 1fr;
    min-height: 250px;
  }

  .dashboard-screen aside {
    display: none;
  }

  .dashboard-actions,
  .dashboard-kpis {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dashboard-platforms {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis span {
    min-height: 72px;
    padding: 10px;
  }

  .dashboard-platforms span {
    padding: 10px;
  }

  .owner-platform-visual,
  .rider-mobile-visual {
    min-height: 420px;
    border-radius: 30px;
  }

  .owner-web-panel {
    width: min(100%, 320px);
    align-self: start;
    margin-top: 34px;
  }

  .owner-web-body {
    grid-template-columns: 1fr;
  }

  .owner-mobile-panel {
    width: 150px;
    min-height: 262px;
    right: 18px;
    bottom: 22px;
    border-radius: 28px;
    padding: 14px 12px;
  }

  .rider-preview-phone {
    width: 214px;
    min-height: 380px;
  }

  .delivery-map-card {
    width: min(100%, 330px);
    min-height: 330px;
    border-radius: 30px;
  }

  .ecosystem-section,
  .process-section,
  .faq-section {
    padding: 90px 5%;
  }

  .sec-title {
    margin-bottom: 46px;
  }

  .bento-card {
    min-height: 280px;
    padding: 30px 24px;
  }

  .partner-cta {
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 30px;
  }

  .download-band {
    margin-left: 5%;
    margin-right: 5%;
    padding: 42px 24px;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .download-guide-hero {
    padding-top: 130px;
  }

  .download-video-card {
    min-height: 340px;
    border-radius: 28px;
  }

  .download-qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .download-qr-card img {
    width: 150px;
    height: 150px;
  }

  .customer-offer-section {
    margin-left: 5%;
    margin-right: 5%;
    padding: 30px 24px;
  }

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

  .lead-form {
    padding: 24px;
  }

  .footer-shell,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
