:root {
  --red: #e30613;
  --red-dark: #b8000b;
  --red-deep: #870008;
  --red-soft: #fff1f2;
  --ink: #141416;
  --ink-soft: #26262b;
  --muted: #65656d;
  --line: #e9e9ed;
  --soft: #f7f7f8;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(20, 20, 22, .07);
  --shadow-lg: 0 25px 70px rgba(20, 20, 22, .15);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--ink); overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .18);
  filter: blur(2px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(255, 255, 255, .96); box-shadow: 0 8px 30px rgba(20, 20, 22, .06); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: 0 7px 20px rgba(227, 6, 19, .18); }
.brand > span { display: flex; flex-direction: column; color: var(--ink); font-size: 17px; font-weight: 850; line-height: 1; letter-spacing: -.35px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-left: auto; }
.site-nav a { position: relative; color: #3a3a3f; font-size: 13px; font-weight: 650; text-decoration: none; white-space: nowrap; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; right: 50%; bottom: -8px; left: 50%; height: 2px; background: var(--red); transition: inset .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--red); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; left: 0; }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 0; border-radius: 10px; color: var(--ink); background: var(--soft); cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg, .deal-copy a svg { width: 18px; height: 18px; }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 10px 24px rgba(227, 6, 19, .22); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(227, 6, 19, .3); }
.button-secondary { color: var(--ink); border-color: #d5d5da; background: var(--white); }
.button-secondary:hover { color: var(--red); border-color: var(--red); }
.button-large { min-height: 54px; padding: 15px 28px; font-size: 15px; }
.button-white { color: var(--red); background: var(--white); box-shadow: var(--shadow-sm); }
.button-white:hover { color: var(--red-dark); background: #fff7f7; }
.button-ghost-white { color: var(--white); border-color: rgba(255, 255, 255, .45); background: transparent; }
.button-ghost-white:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }

.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 132px 0 82px;
  background:
    radial-gradient(circle at 84% 26%, rgba(227, 6, 19, .11), transparent 31%),
    radial-gradient(circle at 25% 92%, rgba(227, 6, 19, .06), transparent 26%),
    linear-gradient(140deg, #fff 0%, #fff8f8 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr); gap: 62px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--red); font-size: 12px; font-weight: 850; letter-spacing: 1.6px; line-height: 1.4; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow-light { color: var(--white); }
.hero h1, .section-heading h2, .app-copy h2, .rider-copy h2, .partner-copy h2, .about-copy h2, .contact-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .99;
}
.hero h1 { max-width: 650px; }
.hero h1 em { display: block; color: var(--red); font-style: normal; }
.hero-lead { max-width: 580px; margin: 26px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 560px; margin-top: 48px; }
.hero-proof > div { padding: 0 22px; border-left: 1px solid #dedee3; }
.hero-proof > div:first-child { padding-left: 0; border: 0; }
.hero-proof strong { display: block; color: var(--ink); font-size: 23px; font-weight: 900; letter-spacing: -.04em; line-height: 1.1; }
.hero-proof span { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.35; }
.hero-visual { position: relative; min-height: 580px; }
.hero-orbit { position: absolute; border: 1px solid rgba(227, 6, 19, .18); border-radius: 50%; }
.hero-orbit-one { width: 480px; height: 480px; top: 48px; left: 62px; }
.hero-orbit-two { width: 340px; height: 340px; top: 118px; left: 132px; border-style: dashed; }
.phone-shot { position: absolute; z-index: 3; width: 262px; right: 25px; top: 6px; border: 8px solid var(--ink); border-radius: 35px; background: var(--ink); box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(3deg); }
.phone-shot img { width: 100%; aspect-ratio: 600 / 1300; object-fit: cover; }
.food-shot { position: absolute; z-index: 2; width: 365px; left: 0; top: 105px; border: 10px solid var(--white); border-radius: 38px; background: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(-5deg); }
.food-shot > img { width: 100%; height: 365px; object-fit: cover; }
.food-shot-caption { padding: 16px 18px 15px; }
.food-shot-caption span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; }
.food-shot-caption strong { display: block; margin-top: 2px; font-size: 18px; line-height: 1.25; }
.live-chip { position: absolute; z-index: 5; right: -5px; bottom: 45px; display: flex; align-items: center; gap: 9px; padding: 13px 18px; border: 1px solid rgba(227, 6, 19, .12); border-radius: 999px; background: var(--white); box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }
.pulse { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.pulse::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--red); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { opacity: .8; transform: scale(.6); } 100% { opacity: 0; transform: scale(1.4); } }

.facts-bar { border-block: 1px solid var(--line); background: var(--white); }
.facts-grid { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.facts-grid p { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0; padding: 11px 18px; border-left: 1px solid var(--line); color: #3d3d43; font-size: 12px; font-weight: 750; text-align: center; }
.facts-grid p:first-child { border-left: 0; }
.facts-grid svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 auto; }

.section-heading { margin-bottom: 52px; }
.section-heading h2, .app-copy h2, .rider-copy h2, .partner-copy h2, .about-copy h2, .contact-intro h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.06; }
.section-heading > p, .section-heading > div + p { max-width: 620px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.section-heading.centered { max-width: 760px; margin-right: auto; margin-bottom: 56px; margin-left: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { margin-inline: auto; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.split-heading > div { max-width: 700px; }
.split-heading > p { max-width: 390px; margin: 0 0 5px; }
.light-heading h2 { color: var(--white); }
.light-heading > p { color: rgba(255, 255, 255, .65); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 14px; font-weight: 850; text-decoration: none; }
.text-link:hover { color: var(--red-dark); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { border-color: rgba(227, 6, 19, .25); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.icon-box { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 15px; color: var(--red); background: var(--red-soft); }
.icon-box svg { width: 25px; height: 25px; }
.icon-box.small { width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto; }
.icon-box.small svg { width: 21px; height: 21px; }
.icon-box.inverse { color: var(--white); background: var(--red); }
.feature-card h3, .step-card h3, .benefit-list h3 { margin: 23px 0 9px; font-size: 18px; letter-spacing: -.02em; }
.feature-card p, .step-card p, .benefit-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { position: relative; min-height: 320px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.step-number { position: absolute; top: 20px; right: 25px; color: #ededf0; font-size: 58px; font-weight: 950; letter-spacing: -.08em; line-height: 1; }
.step-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 22px; color: var(--white); background: var(--red); box-shadow: 0 14px 28px rgba(227, 6, 19, .22); }
.step-icon svg { width: 32px; height: 32px; }
.step-card h3 { margin-top: 40px; font-size: 21px; }
.step-card p { max-width: 290px; font-size: 15px; }

.restaurant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.restaurant-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 6px 24px rgba(20, 20, 22, .04); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.restaurant-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.restaurant-image { height: 230px; display: flex; align-items: center; justify-content: center; padding: 28px; overflow: hidden; }
.restaurant-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.restaurant-card:hover .restaurant-image img { transform: scale(1.035); }
.restaurant-logo-panel { background: radial-gradient(circle at 50% 42%, #fff 0%, #fff 52%, #f5f5f7 100%); }
.restaurant-logo-panel img { width: min(82%, 170px); height: auto; max-height: 82%; border-radius: 18px; mix-blend-mode: normal; }
.logo-bg-light { background: linear-gradient(145deg, #f8f8f9, #fff); }
.logo-bg-red { background: linear-gradient(145deg, #fff4f4, #fff); }
.restaurant-body { padding: 22px 22px 20px; }
.restaurant-title { min-width: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.restaurant-title h3 { min-width: 0; margin: 0; font-size: 18px; letter-spacing: -.03em; line-height: 1.25; }
.rating { display: inline-flex; align-items: center; gap: 4px; flex: 0 0 auto; color: var(--ink); font-size: 12px; font-weight: 850; }
.rating svg { width: 15px; height: 15px; color: var(--red); fill: var(--red); stroke: var(--red); }
.rating small { color: var(--muted); font-size: 10px; font-weight: 600; }
.partner-pill { display: inline-flex; flex: 0 0 auto; padding: 5px 8px; color: var(--red); background: var(--red-soft); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.branch { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.cuisine { min-height: 22px; margin: 15px 0; color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .55px; }
.restaurant-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.restaurant-meta b { color: var(--ink); font-weight: 800; }
.data-note { max-width: 800px; margin: 28px auto 0; color: var(--muted); font-size: 11px; text-align: center; }
.data-note-light { color: rgba(255, 255, 255, .48); }

.deals-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; position: relative; z-index: 1; }
.deal-card { min-height: 400px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); color: var(--ink); background: var(--white); overflow: hidden; }
.deal-image { height: 215px; background: #f3f3f5; overflow: hidden; }
.deal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.deal-card:hover .deal-image img { transform: scale(1.04); }
.deal-copy { padding: 22px; }
.deal-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--white); background: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .35px; text-transform: uppercase; }
.deal-copy p { margin: 16px 0 3px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .8px; }
.deal-copy h3 { margin: 0; font-size: 20px; line-height: 1.25; letter-spacing: -.03em; }
.deal-copy a { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; color: var(--red); font-size: 12px; font-weight: 850; text-decoration: none; }

.app-section { overflow: hidden; }
.app-section::before { content: ""; position: absolute; z-index: -1; width: 500px; height: 500px; left: -260px; top: 100px; border-radius: 50%; background: var(--red-soft); }
.app-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.app-gallery { position: relative; min-height: 610px; }
.app-phone { position: absolute; top: 45px; width: 220px; border: 7px solid var(--ink); border-radius: 29px; background: var(--ink); box-shadow: var(--shadow-lg); overflow: hidden; }
.app-phone img { width: 100%; aspect-ratio: 600 / 1300; object-fit: cover; }
.app-phone-left { left: 0; transform: rotate(-7deg) scale(.88); transform-origin: bottom center; }
.app-phone-main { z-index: 3; left: 50%; top: 0; transform: translateX(-50%); }
.app-phone-right { right: 0; transform: rotate(7deg) scale(.88); transform-origin: bottom center; }
.app-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 12px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 750; }
.check-list svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; color: var(--white); background: var(--red); stroke-width: 2.4; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.store-button { min-width: 178px; display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; color: var(--white); background: var(--ink); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.store-button:hover { transform: translateY(-2px); background: #2b2b2f; }
.store-icon { width: 28px; height: 28px; flex: 0 0 auto; }
.store-button span { display: flex; flex-direction: column; line-height: 1; }
.store-button small { font-size: 8px; letter-spacing: .7px; }
.store-button strong { margin-top: 4px; font-size: 17px; font-weight: 700; letter-spacing: -.3px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { min-height: 430px; display: flex; flex-direction: column; margin: 0; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 6px 24px rgba(20, 20, 22, .04); }
.review-photo { width: calc(100% + 60px); height: 170px; margin: -30px -30px 24px; object-fit: cover; border-bottom: 1px solid var(--line); background: #ececef; }
.featured-review { color: var(--white); border-color: var(--red); background: var(--red); box-shadow: 0 20px 45px rgba(227, 6, 19, .18); }
.stars { color: var(--red); font-size: 15px; letter-spacing: 3px; }
.featured-review .stars { color: var(--white); }
.four-stars i { color: #cacacf; font-style: normal; }
.review-card blockquote { margin: 26px 0; font-size: 20px; font-weight: 750; line-height: 1.5; letter-spacing: -.02em; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card figcaption > span { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--red); background: var(--red-soft); font-size: 11px; font-weight: 900; }
.review-card figcaption div { display: flex; flex-direction: column; }
.review-card figcaption strong { font-size: 13px; }
.review-card figcaption small { color: var(--muted); font-size: 10px; }
.featured-review figcaption > span { color: var(--red); background: var(--white); }
.featured-review figcaption small { color: rgba(255, 255, 255, .68); }

.rider-section { padding-bottom: 0; color: var(--white); background: linear-gradient(135deg, var(--red-deep), var(--red) 65%, #f0202b); overflow: hidden; }
.rider-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.rider-copy { padding-bottom: 105px; }
.rider-copy h2 { max-width: 680px; color: var(--white); }
.rider-copy > p:not(.eyebrow, .apk-note) { max-width: 620px; margin: 24px 0 0; color: rgba(255, 255, 255, .76); font-size: 17px; }
.rider-benefits { display: grid; gap: 13px; margin: 30px 0; padding: 0; list-style: none; }
.rider-benefits li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.rider-benefits span { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; font-size: 9px; }
.rider-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.apk-note { margin: 13px 0 0; color: rgba(255, 255, 255, .52); font-size: 10px; }
.rider-visual { position: relative; height: 650px; display: flex; align-items: end; justify-content: center; }
.rider-visual::before { content: ""; position: absolute; width: 470px; height: 470px; bottom: -100px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; }
.rider-visual img { position: relative; z-index: 1; width: auto; max-width: min(100%, 360px); height: 100%; object-fit: cover; object-position: top; border: 8px solid rgba(255, 255, 255, .95); border-bottom: 0; border-radius: 34px 34px 0 0; box-shadow: 0 25px 60px rgba(65, 0, 3, .35); }

.partner-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.partner-visual { position: relative; min-height: 590px; border-radius: var(--radius-lg); background: var(--red-soft); overflow: hidden; }
.partner-visual::before, .partner-visual::after { content: ""; position: absolute; border: 1px solid rgba(227, 6, 19, .22); border-radius: 50%; }
.partner-visual::before { width: 420px; height: 420px; top: 70px; left: 35px; }
.partner-visual::after { width: 300px; height: 300px; top: 130px; left: 95px; border-style: dashed; }
.partner-logo { position: absolute; z-index: 2; display: flex; align-items: center; justify-content: center; border: 7px solid var(--white); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.partner-logo-one { width: 220px; height: 220px; left: 55px; top: 58px; transform: rotate(-7deg); }
.partner-logo-two { width: 190px; height: 190px; right: 45px; top: 185px; transform: rotate(8deg); }
.partner-logo-three { width: 150px; height: 150px; left: 95px; bottom: 55px; transform: rotate(4deg); }
.partner-count { position: absolute; z-index: 3; right: 38px; bottom: 38px; width: 170px; padding: 18px; border-radius: 18px; color: var(--white); background: var(--red); box-shadow: 0 15px 35px rgba(227, 6, 19, .25); }
.partner-count strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.partner-count span { display: block; margin-top: 7px; font-size: 10px; line-height: 1.35; }
.partner-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.benefit-list { display: grid; gap: 21px; margin: 32px 0 34px; }
.benefit-list > div { display: flex; gap: 15px; }
.benefit-list h3 { margin: 0 0 4px; font-size: 15px; }
.benefit-list p { font-size: 13px; }

.about-section { background: linear-gradient(145deg, #fff, #fff6f6); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.about-copy .text-link { margin-top: 28px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; transform: rotate(2deg); }
.stat-card { min-height: 190px; display: flex; flex-direction: column; justify-content: end; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.stat-card strong { font-size: 42px; font-weight: 950; letter-spacing: -.06em; line-height: 1; }
.stat-card span { margin-top: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }
.stat-card-red { color: var(--white); border-color: var(--red); background: var(--red); transform: translateY(-14px); }
.stat-card-dark { color: var(--white); border-color: var(--ink); background: var(--ink); transform: translateY(14px); }
.stat-card-red span, .stat-card-dark span { color: rgba(255, 255, 255, .68); }

.contact-section { padding-top: 80px; background: var(--white); }
.contact-panel { display: grid; grid-template-columns: .95fr 1.05fr; border-radius: var(--radius-lg); color: var(--white); background: var(--ink); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-intro { padding: 58px; background: var(--red); }
.contact-intro h2 { color: var(--white); }
.contact-intro p:not(.eyebrow) { max-width: 470px; margin: 20px 0 28px; color: rgba(255, 255, 255, .77); }
.contact-details { display: grid; padding: 28px 44px; }
.contact-details > a { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .11); text-decoration: none; transition: transform .2s ease; }
.contact-details > a:last-child { border-bottom: 0; }
.contact-details > a:hover { transform: translateX(5px); }
.contact-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 13px; color: var(--red); background: rgba(255, 255, 255, .09); flex: 0 0 auto; }
.contact-icon svg { width: 23px; height: 23px; }
.contact-details a > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.contact-details small { color: rgba(255, 255, 255, .5); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }

.site-footer { padding: 82px 0 22px; color: rgba(255, 255, 255, .65); background: #0b0b0d; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 65px; padding-bottom: 60px; }
.brand-footer > span { color: var(--white); }
.brand-footer small { color: rgba(255, 255, 255, .48); }
.footer-brand > p { max-width: 360px; margin: 22px 0; font-size: 13px; }
.footer-store-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-store-links a { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 9px; color: var(--white); font-size: 11px; font-weight: 750; text-decoration: none; }
.footer-store-links a:hover { border-color: var(--red); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h2 { margin: 4px 0 12px; color: var(--white); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; }
.footer-column a { font-size: 12px; text-decoration: none; transition: color .2s ease; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 10px; }
.footer-bottom p { margin: 0; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.feature-grid .reveal:nth-child(2), .restaurant-grid .reveal:nth-child(2), .review-grid .reveal:nth-child(2) { transition-delay: .07s; }
.feature-grid .reveal:nth-child(3), .restaurant-grid .reveal:nth-child(3), .review-grid .reveal:nth-child(3) { transition-delay: .14s; }
.feature-grid .reveal:nth-child(4), .restaurant-grid .reveal:nth-child(5) { transition-delay: .21s; }

:focus-visible { outline: 3px solid rgba(227, 6, 19, .35); outline-offset: 4px; }
.section-dark :focus-visible, .rider-section :focus-visible, .contact-panel :focus-visible, .site-footer :focus-visible { outline-color: rgba(255, 255, 255, .65); }

@media (max-width: 1120px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .nav-cta { padding-inline: 18px; }
  .hero-grid { grid-template-columns: .92fr 1.08fr; gap: 30px; }
  .phone-shot { right: 0; }
  .food-shot { width: 330px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { min-height: 230px; }
}

@media (max-width: 960px) {
  .site-header { height: 70px; }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; }
  .site-nav {
    position: fixed;
    z-index: 99;
    top: 70px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 20px 24px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 45px rgba(20, 20, 22, .13);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 14px 6px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; padding-top: 122px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero .eyebrow, .hero-actions { justify-content: center; }
  .hero-proof { margin-inline: auto; text-align: left; }
  .hero-visual { width: min(100%, 590px); margin-inline: auto; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid p:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .facts-grid p:nth-child(4) { border-top: 1px solid var(--line); }
  .restaurant-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid .deal-card:nth-child(3) { grid-column: span 2; }
  .app-grid { grid-template-columns: 1fr; gap: 60px; }
  .app-gallery { width: min(100%, 620px); margin-inline: auto; }
  .app-copy { max-width: 680px; margin-inline: auto; text-align: center; }
  .app-copy .eyebrow { justify-content: center; }
  .check-list { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .store-buttons { justify-content: center; }
  .rider-grid { grid-template-columns: 1fr 390px; gap: 30px; }
  .partner-grid, .about-grid { gap: 55px; }
  .partner-grid { grid-template-columns: .85fr 1.15fr; }
  .partner-logo-one { left: 25px; }
  .partner-logo-two { right: 20px; }
  .partner-logo-three { left: 50px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 70px 0; }
  .nav-cta { display: none; }
  .hero { padding: 98px 0 54px; }
  .hero-grid { gap: 28px; }
  .hero h1 { font-size: clamp(39px, 11vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { margin-top: 26px; }
  .hero-proof { margin-top: 36px; }
  .hero-visual { min-height: 460px; }
  .hero-orbit-one { width: 400px; height: 400px; left: 50%; transform: translateX(-50%); }
  .hero-orbit-two { width: 280px; height: 280px; left: 50%; transform: translateX(-50%); }
  .phone-shot { width: 220px; right: 4%; }
  .food-shot { width: 290px; left: 1%; top: 120px; }
  .food-shot > img { height: 280px; }
  .live-chip { right: 1%; bottom: 12px; }
  .split-heading { display: block; }
  .split-heading > p, .split-heading > .text-link { display: inline-flex; margin-top: 20px; }
  .section-heading, .section-heading.centered { margin-bottom: 40px; }
  .section-heading > p, .section-heading > div + p { font-size: 15px; }
  .steps-grid, .review-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 280px; }
  .rider-grid { grid-template-columns: 1fr; text-align: center; }
  .rider-copy { padding-bottom: 55px; }
  .rider-copy .eyebrow, .rider-actions { justify-content: center; }
  .rider-copy > p:not(.eyebrow, .apk-note) { margin-inline: auto; }
  .rider-benefits { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .rider-visual { height: 520px; }
  .partner-grid, .about-grid { grid-template-columns: 1fr; }
  .partner-visual { min-height: 550px; order: 2; }
  .partner-copy { order: 1; }
  .about-stats { max-width: 550px; margin-inline: auto; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-intro { padding: 45px 34px; }
  .contact-details { padding: 18px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .site-header { height: 66px; }
  .brand { gap: 9px; }
  .brand img { width: 40px; height: 40px; border-radius: 10px; }
  .brand > span { font-size: 15px; }
  .brand small { letter-spacing: 1.7px; }
  .nav-toggle { width: 42px; height: 42px; }
  .site-nav { top: 66px; max-height: calc(100dvh - 66px); padding: 8px 16px 20px; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; }
  .hero { padding-top: 92px; }
  .hero-lead { margin-top: 18px; line-height: 1.55; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .hero-proof > div:nth-child(3) { grid-column: span 2; padding-left: 0; border-left: 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid p { justify-content: flex-start; min-height: 58px; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .facts-grid p:first-child { border-top: 0; }
  .feature-grid, .restaurant-grid, .deals-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 23px; }
  .feature-card h3 { margin-top: 18px; }
  .step-card { min-height: 0; padding: 27px; }
  .step-card h3 { margin-top: 32px; }
  .restaurant-image { height: 185px; padding: 20px; }
  .restaurant-logo-panel img { width: min(84%, 165px); max-height: 84%; }
  .restaurant-body { padding: 20px; }
  .deal-card { min-height: 0; }
  .deal-image { height: 190px; }
  .review-card { min-height: 0; padding: 24px; }
  .review-photo { width: calc(100% + 48px); height: 165px; margin: -24px -24px 21px; }
  .review-card blockquote { margin: 20px 0; font-size: 18px; }
  .deals-grid .deal-card:nth-child(3) { grid-column: auto; }
  .app-grid { gap: 40px; }
  .app-gallery { min-height: 455px; }
  .app-phone-left, .app-phone-right { display: none; }
  .app-phone-main { top: 0; width: 220px; }
  .about-stats { gap: 10px; }
  .stat-card { min-height: 155px; padding: 20px; }
  .stat-card strong { font-size: 34px; }
  .rider-copy { padding-bottom: 38px; }
  .rider-visual { height: 460px; }
  .partner-visual { min-height: 460px; }
  .partner-logo-one { width: 180px; height: 180px; }
  .partner-logo-two { width: 155px; height: 155px; }
  .partner-logo-three { width: 120px; height: 120px; }
  .partner-count { width: 145px; right: 18px; bottom: 22px; }
  .contact-intro { padding: 36px 24px; }
  .contact-details { padding: 16px 24px; }
  .contact-details > a { gap: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 400px; }
  .phone-shot { width: 172px; right: 0; border-width: 6px; border-radius: 28px; }
  .food-shot { width: 218px; left: 0; top: 96px; border-width: 7px; border-radius: 28px; }
  .food-shot > img { height: 205px; }
  .food-shot-caption { padding: 12px; }
  .food-shot-caption strong { font-size: 15px; }
  .live-chip { right: 0; bottom: 2px; padding: 10px 13px; font-size: 10px; }
  .app-gallery { min-height: 430px; }
  .app-phone { border-width: 5px; border-radius: 24px; }
  .app-phone-main { width: 205px; }
  .store-button { width: 100%; }
  .restaurant-title { display: block; }
  .rating { margin-top: 8px; }
  .rider-actions { flex-direction: column; }
  .rider-actions .button { width: 100%; }
  .rider-visual { height: 440px; }
  .partner-visual { min-height: 400px; }
  .partner-logo-one { width: 150px; height: 150px; top: 35px; }
  .partner-logo-two { width: 130px; height: 130px; top: 150px; }
  .partner-logo-three { width: 100px; height: 100px; bottom: 45px; }
  .partner-count { width: 130px; padding: 14px; }
  .about-stats { transform: none; }
  .stat-card { min-height: 145px; }
}

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