﻿:root {
  --black: #050505;
  --panel: #141414;
  --red: #e21b23;
  --white: #f8f5ee;
  --muted: #bdb7aa;
  --gold: #f0b72f;
  --line: #342d2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.wrap {
  width: min(1220px, calc(100% - 38px));
  margin: auto;
}

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.brand span {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.1;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

nav a.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  padding: 68px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(226, 27, 35, .28), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(240, 183, 47, .15), transparent 22%);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 10px 0 18px;
  font-size: clamp(54px, 9vw, 122px);
  line-height: .86;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

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

.hero p {
  max-width: 820px;
  color: var(--white);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.btn.alt {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
}

.hero-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.hero-card img {
  width: 100%;
  border-radius: 8px;
}

.hero-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 26px;
  text-transform: uppercase;
}

.hero-card span {
  display: block;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

section {
  padding: 72px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .66fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

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

.brand-card,
.special-card {
  min-height: 286px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.brand-card img {
  width: 100%;
  border-radius: 8px;
  background: #050505;
}

.brand-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
}

.menu-list span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-weight: 850;
}

.menu-list em {
  color: var(--gold);
  font-style: normal;
}

.red-band {
  color: #fff;
  background: var(--red);
}

.red-band .eyebrow {
  color: #160607;
}

.red-band p {
  color: #fff;
}

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

.pill-grid span {
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, .32);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.specials {
  background: #0b0b0b;
}

.special-card {
  border-left: 5px solid var(--red);
}

.special-card h3 {
  color: var(--gold);
  font-size: 20px;
}

.order-band {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(240, 183, 47, .2), transparent 28%),
    linear-gradient(135deg, #150607, #090909 58%, #20110a);
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
}

.order-grid h2 {
  color: #fff;
}

.order-grid p {
  color: rgba(255, 255, 255, .76);
}

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

.order-cards article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
}

.order-cards b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #090909;
  background: var(--gold);
  font-size: 12px;
}

.events-band {
  background:
    linear-gradient(90deg, rgba(226, 27, 35, .24), transparent 46%),
    #0b0b0b;
}

.b2b-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

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

.b2b-list span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--gold);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.market-hero {
  padding: 84px 0 56px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 183, 47, .24), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(226, 27, 35, .25), transparent 30%),
    linear-gradient(135deg, #090909, #1b0608 58%, #080808);
}

.market-hero h1,
.market-hero p {
  color: #fff;
}

.market-hero p {
  color: rgba(255, 255, 255, .78);
}

.market-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .64fr);
  gap: 24px;
  align-items: stretch;
}

.market-preview,
.checkout-preview {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}

.market-preview {
  padding: 18px;
}

.market-tabs,
.delivery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-tabs span,
.delivery-tabs span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
}

.food-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.food-tile {
  min-height: 178px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  color: #111;
}

.food-tile img {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}

.food-tile strong,
.checkout-preview strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.food-tile span,
.checkout-preview span {
  color: #51413b;
  font-size: 13px;
  font-weight: 800;
}

.checkout-preview {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  color: #111;
  font-weight: 900;
}

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

.flow-board article,
.order-module-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.flow-board article {
  min-height: 200px;
  padding: 20px;
}

.flow-board b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #090909;
  background: var(--gold);
  font-size: 12px;
}

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

.order-module-card {
  min-height: 220px;
  padding: 22px;
}

.order-module-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
  font-size: 11px;
  text-transform: uppercase;
}

.status-rail {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.status-rail span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(226, 27, 35, .1);
  color: var(--red);
  font-weight: 950;
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050505;
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

footer img {
  width: 74px;
}

footer p,
footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.ordering-trust-hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 8, 8, .94), rgba(70, 12, 12, .72)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.ordering-trust-hero h1,
.ordering-trust-hero p {
  color: #fff;
}

.ordering-trust-hero p {
  color: rgba(255, 255, 255, .82);
}

.trust-flow-section,
.voucher-trust {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.voucher-trust {
  display: grid;
  gap: 18px;
}

.trust-flow-section .flow-board article {
  background:
    linear-gradient(140deg, rgba(255, 214, 0, .08), transparent),
    var(--panel);
}

@media (max-width: 920px) {
  .hero,
  .section-head,
  .order-grid,
  .b2b-panel,
  .market-shell,
  .foot {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .special-grid,
  .pill-grid,
  .order-cards,
  .b2b-list,
  .food-tile-grid,
  .flow-board,
  .order-module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-grid,
  .special-grid,
  .pill-grid,
  .order-cards,
  .b2b-list,
  .food-tile-grid,
  .flow-board,
  .order-module-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  .wrap {
    width: min(100% - 28px, 1220px);
  }
}

/* v16 readiness/profile pages */
.readiness-hero {
  width: min(100% - 48px, 1440px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .35fr);
  gap: 24px;
  align-items: end;
  min-height: 420px;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(8, 20, 18, .94), rgba(8, 20, 18, .72)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center / cover;
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.readiness-news { background-image: linear-gradient(120deg, rgba(5, 10, 18, .94), rgba(5, 10, 18, .66)), url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1800&q=80"); }
.readiness-ten { background-image: linear-gradient(120deg, rgba(5, 10, 18, .94), rgba(5, 10, 18, .66)), url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1800&q=80"); }
.readiness-build { background-image: linear-gradient(120deg, rgba(15, 22, 20, .94), rgba(15, 22, 20, .66)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80"); }
.readiness-myplace { background-image: linear-gradient(120deg, rgba(18, 8, 6, .94), rgba(18, 8, 6, .66)), url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80"); }
.readiness-hero h1,
.readiness-hero p { color: #fff; }
.readiness-hero h1 { max-width: 920px; }
.readiness-hero aside {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.readiness-hero aside strong { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .9; }
.readiness-section,
.readiness-band {
  width: min(100% - 48px, 1440px);
  margin: 24px auto;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.readiness-copy,
.readiness-grid article,
.readiness-band {
  border: 1px solid rgba(30, 45, 40, .14);
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(0,0,0,.07);
}
.readiness-copy { padding: 24px; }
.readiness-copy ul { margin: 0; padding-left: 20px; color: #26352f; line-height: 1.55; }
.readiness-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.readiness-grid article { min-height: 150px; padding: 20px; }
.readiness-grid span { display: block; margin-bottom: 10px; color: #0b7a53; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.readiness-grid strong { display: block; color: #101816; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.18; }
.readiness-band { grid-template-columns: 1fr auto; align-items: center; padding: 24px; }
@media (max-width: 820px) {
  .readiness-hero,
  .readiness-section,
  .readiness-band { width: min(100% - 28px, 1440px); grid-template-columns: 1fr; }
  .readiness-grid { grid-template-columns: 1fr; }
}

/* Cookie consent gate */
.cookie-consent-panel {
  position: fixed;
  z-index: 9999;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(10, 24, 20, .96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.cookie-consent-panel strong { display: block; margin-bottom: 6px; color: #fff; font-size: 1.05rem; }
.cookie-consent-panel p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.45; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.cookie-actions button[data-cookie-analytics] { background: #9fca2b; border-color: #9fca2b; color: #102018; }
@media (max-width: 720px) { .cookie-consent-panel { grid-template-columns: 1fr; } .cookie-actions { justify-content: stretch; } .cookie-actions button { flex: 1 1 auto; } }


.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.cookie-toggle input { width: 18px; height: 18px; accent-color: var(--lime, #b6ff16); }

/* MWB News and community reporting bridge */
.ecosystem-news-strip {
  width: min(100% - 40px, 1180px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
  border-top: 3px solid #a51818;
  border-bottom: 1px solid rgba(44, 27, 27, .18);
  background: #f7f5f3;
}
.ecosystem-news-strip span,
.ecosystem-news-strip strong { display: block; }
.ecosystem-news-strip span { color: #a51818; font-size: .72rem; font-weight: 900; }
.ecosystem-news-strip strong { margin-top: 5px; color: #241d1d; line-height: 1.35; }
.ecosystem-news-strip nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.ecosystem-news-strip a { min-height: 40px; display: inline-flex; align-items: center; padding: 9px 12px; border: 1px solid #a51818; color: #7f1111; background: #fff; font-size: .78rem; font-weight: 900; text-decoration: none; }
.ecosystem-news-strip a:last-child { border-color: #146b96; color: #14577e; }
@media (max-width: 720px) {
  .ecosystem-news-strip { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; }
  .ecosystem-news-strip nav { justify-content: stretch; }
  .ecosystem-news-strip a { flex: 1 1 100%; justify-content: center; text-align: center; }
}
