:root {
  --wine: #8b2252;
  --wine-deep: #6b1a34;
  --ink: #1c0612;
  --paper: #fffaf5;
  --paper-warm: #f4eadf;
  --rose: #fff0f3;
  --paprika: #cf5f37;
  --sage: #8aa088;
  --line: rgba(28, 6, 18, 0.16);
  --shell: min(1160px, calc(100% - 40px));
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--paprika);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  margin-right: 8px;
  object-fit: contain;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.wordmark-bite {
  color: var(--wine);
}

.wordmark-menu {
  color: var(--ink);
  font-size: 0.78em;
  letter-spacing: -0.035em;
}

.primary-nav {
  display: flex;
  gap: 20px;
}

.primary-nav a {
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.launch-badge {
  padding: 6px 9px;
  border: 1px solid rgba(139, 34, 82, 0.28);
  border-radius: 999px;
  background: var(--rose);
  color: var(--wine-deep);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-contact {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::after {
  content: "UB";
  position: absolute;
  right: -0.06em;
  bottom: -0.42em;
  z-index: 0;
  color: rgba(139, 34, 82, 0.035);
  font-family: var(--display);
  font-size: min(50vw, 700px);
  font-weight: 900;
  letter-spacing: -0.15em;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-block: clamp(72px, 10vw, 126px);
}

.eyebrow,
.section-number {
  margin: 0;
  color: var(--wine);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--wine);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 780px;
  margin: 22px 0 16px;
  font-size: clamp(2.75rem, 8.5vw, 7.35rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 0.82;
}

.hero-tagline {
  margin-bottom: 20px;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: #4b3841;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.72;
}

.hero-proof {
  max-width: 650px;
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--paprika);
  color: #4b3841;
  font-size: 0.94rem;
}

.hero-proof strong {
  color: var(--ink);
  font-family: var(--display);
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-keywords li {
  padding: 6px 9px;
  border: 1px solid rgba(139, 34, 82, 0.34);
  border-radius: 2px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wine);
  color: #fff;
}

.button-primary:hover {
  background: var(--wine-deep);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--wine-deep);
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 5px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin: 38px 0 0;
  color: #6a5961;
  font-size: 0.75rem;
  line-height: 1.45;
}

.trust-monogram {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 900;
}

.order-rail {
  position: relative;
  margin: 0;
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: var(--ink);
  box-shadow: 18px 22px 0 var(--rose);
  color: #fff;
  transform: rotate(1.15deg);
}

.rail-top,
.ticket-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.rail-top {
  padding: 0 3px 13px;
  color: #d9cbd2;
}

.rail-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.rail-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e6a451;
}

.ticket {
  position: relative;
  padding: 24px 22px 18px;
  background: #fffdf8;
  color: var(--ink);
}

.ticket::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 8px;
  background: linear-gradient(135deg, #fffdf8 5px, transparent 0) 0 0 / 10px 10px repeat-x;
}

.ticket-heading {
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(28, 6, 18, 0.34);
  color: var(--wine);
}

.ticket-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticket-steps li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid rgba(28, 6, 18, 0.1);
}

.step-number {
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

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

.ticket-steps strong {
  font-family: var(--display);
  font-size: 1.12rem;
}

.ticket-steps small {
  margin-top: 1px;
  color: #76656d;
  font-size: 0.74rem;
}

.step-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.step-check.current {
  background: var(--paprika);
  letter-spacing: -0.08em;
}

.step-check.waiting {
  background: transparent;
  color: #ae9ea5;
}

.ticket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: #76656d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.rail-caption {
  max-width: 360px;
  margin: 23px 5px 0;
  color: #cdbfc6;
  font-size: 0.76rem;
  line-height: 1.55;
}

.flow-section,
.onboarding-section,
.platform-section,
.switch-section,
.food-section,
.proof-section,
.interest-section {
  padding-block: clamp(90px, 12vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr);
  gap: 42px;
}

.section-heading h2,
.vendor-lead h2,
.onboarding-copy h2,
.interest-copy h2,
.food-title-wrap h2,
.about-grid h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 830;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.section-heading > div > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #64515a;
  font-size: 1.08rem;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.flow-list li {
  min-height: 250px;
  padding: 22px 24px 26px;
  border-right: 1px solid var(--line);
}

.flow-list li:first-child {
  padding-left: 0;
}

.flow-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.flow-index {
  display: block;
  margin-bottom: 62px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.flow-list h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.flow-list p {
  margin-bottom: 0;
  color: #64515a;
  font-size: 0.91rem;
  line-height: 1.6;
}

.platform-section {
  border-block: 1px solid var(--line);
  background: var(--rose);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.platform-grid article {
  min-height: 235px;
  padding: 30px 32px 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.surface-label {
  margin-bottom: 45px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.platform-grid h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.platform-grid article > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: #64515a;
  font-size: 0.91rem;
}

.capability-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability-line li {
  position: relative;
  padding: 17px 24px 17px 18px;
  border-bottom: 1px solid var(--line);
  color: #4b3841;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 760;
}

.capability-line li::before {
  content: "+";
  margin-right: 10px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.platform-benefit {
  max-width: 910px;
  margin: 34px 0 0 auto;
  padding: 22px 24px;
  border-left: 4px solid var(--wine);
  background: rgba(255, 255, 255, 0.5);
  color: #59464f;
  font-size: 0.94rem;
}

.platform-benefit strong {
  color: var(--ink);
}

.vendor-section {
  overflow: hidden;
  background: var(--wine);
  color: #fff;
}

.vendor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(60px, 10vw, 130px);
  padding-block: clamp(90px, 12vw, 145px);
}

.section-number.light {
  color: #f3b6cd;
}

.vendor-lead h2 {
  margin-top: 28px;
  color: #fff;
}

.vendor-lead > p:not(.section-number) {
  max-width: 580px;
  margin-bottom: 0;
  color: #f1dce5;
  font-size: 1.07rem;
}

.cost-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 650px;
  margin-top: 38px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(28, 6, 18, 0.14);
}

.cost-path > div {
  display: grid;
  gap: 3px;
}

.cost-path span,
.cost-path small {
  color: #f3b6cd;
  font-size: 0.67rem;
}

.cost-path span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cost-path strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.cost-path small {
  line-height: 1.45;
}

.cost-path .cost-arrow {
  color: #fff;
  font-size: 1.3rem;
}

.vendor-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.vendor-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.vendor-points article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.vendor-points h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.vendor-points p {
  margin-bottom: 0;
  color: #f1dce5;
  font-size: 0.9rem;
}

.vendor-points .visibility-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 3px solid #f3b6cd;
  background: rgba(28, 6, 18, 0.18);
  color: #f1dce5;
  font-size: 0.78rem;
}

.vendor-points .visibility-note strong {
  color: #fff;
}

.switch-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.switch-heading h2 {
  max-width: 850px;
}

.switch-heading > div > p {
  max-width: 760px;
}

.comparison-scroll-hint {
  display: none;
}

.comparison-table-wrap {
  margin-top: 66px;
  overflow-x: auto;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 14px 17px 0 var(--rose);
  scrollbar-color: var(--wine) var(--rose);
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid var(--paprika);
  outline-offset: 5px;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table caption {
  padding: 15px 18px;
  background: var(--ink);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

.comparison-table th,
.comparison-table td {
  padding: 21px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table tr > :last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  background: var(--paper-warm);
  color: #58434d;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 820;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 20%;
}

.comparison-table thead .urbanbite-column {
  background: var(--wine);
  color: #fff;
}

.comparison-table thead .urbanbite-column span {
  display: block;
  margin-top: 2px;
  color: #f3b6cd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 790;
}

.comparison-table tbody td {
  color: #68555e;
  font-size: 0.84rem;
  line-height: 1.55;
}

.comparison-table tbody .urbanbite-column {
  background: rgba(139, 34, 82, 0.075);
  color: #3f202f;
  font-weight: 720;
}

.comparison-caveat {
  max-width: 880px;
  margin: 27px 0 0;
  color: #75636b;
  font-size: 0.76rem;
  line-height: 1.55;
}

.switch-outcome {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  margin-top: 54px;
  padding: clamp(28px, 5vw, 56px);
  border-top: 5px solid var(--paprika);
  background: var(--ink);
  color: #fff;
}

.switch-outcome-label {
  margin: 5px 0 0;
  color: #f3b6cd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.switch-outcome h3 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.015em;
  line-height: 1.03;
}

.switch-outcome div > p {
  max-width: 790px;
  margin-bottom: 0;
  color: #e7dce1;
  font-size: 0.94rem;
}

.switch-outcome .switch-boundary {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #bfaeb6;
  font-size: 0.76rem;
}

.switch-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.switch-paths article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.switch-path-label {
  margin: 0 0 10px;
  color: #f3b6cd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.switch-paths article > p:last-child {
  margin: 0;
  color: #f4ebef;
  font-size: 0.82rem;
  line-height: 1.6;
}

.onboarding-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.onboarding-section::before {
  content: "SETUP";
  position: absolute;
  right: -0.03em;
  bottom: -0.3em;
  color: rgba(139, 34, 82, 0.045);
  font-family: var(--display);
  font-size: min(22vw, 300px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
}

.onboarding-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 8vw, 105px);
  align-items: start;
}

.onboarding-copy {
  position: sticky;
  top: 120px;
}

.onboarding-copy h2,
.interest-copy h2 {
  margin: 28px 0 24px;
}

.onboarding-intro,
.interest-copy > p {
  max-width: 610px;
  color: #59464f;
  font-size: 1.02rem;
}

.onboarding-principles {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
}

.onboarding-principles p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #64515a;
  font-size: 0.84rem;
}

.onboarding-principles strong {
  color: var(--ink);
}

.onboarding-ticket {
  margin: 0;
  padding: 18px;
  border-radius: 7px;
  background: var(--ink);
  box-shadow: 18px 22px 0 rgba(139, 34, 82, 0.12);
  color: #fff;
  transform: rotate(-0.45deg);
}

.onboarding-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 4px 15px;
  color: #d9cbd2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.onboarding-ticket ol {
  position: relative;
  margin: 0;
  padding: 12px 24px 20px;
  background: #fffdf8;
  color: var(--ink);
  list-style: none;
}

.onboarding-ticket ol::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 8px;
  background: linear-gradient(135deg, #fffdf8 5px, transparent 0) 0 0 / 10px 10px repeat-x;
}

.onboarding-ticket li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(28, 6, 18, 0.22);
}

.onboarding-ticket li:last-child {
  border-bottom: 0;
}

.onboarding-index {
  padding-top: 2px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
}

.onboarding-ticket strong {
  display: block;
  font-family: var(--display);
  font-size: 1.03rem;
}

.onboarding-ticket li p {
  margin: 4px 0 0;
  color: #6a5961;
  font-size: 0.8rem;
  line-height: 1.5;
}

.onboarding-status {
  margin-top: 2px;
  padding: 5px 8px;
  border: 1px solid rgba(139, 34, 82, 0.35);
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.onboarding-ticket figcaption {
  margin: 22px 5px 2px;
  color: #cdbfc6;
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Allergen support section (/platform) */

.allergen-section {
  padding-block: clamp(90px, 12vw, 150px);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.allergen-lead {
  max-width: 900px;
  margin: 48px 0 0;
  color: #4b3841;
  font-size: 1.02rem;
}

.allergen-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.allergen-journey > li {
  padding: 26px 28px 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.allergen-journey > li > span {
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.allergen-journey > li > div {
  margin-top: 44px;
}

.allergen-journey strong {
  font-family: var(--display);
  font-size: 1.28rem;
}

.allergen-journey p {
  max-width: 640px;
  margin: 8px 0 0;
  color: #64515a;
  font-size: 0.95rem;
}

.allergen-focus {
  margin-top: 46px;
  padding: 30px 32px;
  border-left: 4px solid var(--wine);
  background: var(--rose);
}

.allergen-focus-lead {
  max-width: 760px;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 780;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.allergen-focus p:last-child {
  max-width: 860px;
  margin-bottom: 0;
  color: #4b3841;
  font-size: 0.98rem;
}

.allergen-controls {
  margin-top: 46px;
}

.allergen-controls article {
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.allergen-controls article:last-child {
  border-bottom: 1px solid var(--line);
}

.allergen-controls strong {
  font-family: var(--display);
  font-size: 1.12rem;
}

.allergen-controls p {
  max-width: 780px;
  margin: 8px 0 0;
  color: #64515a;
  font-size: 0.95rem;
}

.allergen-responsibility {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-top: 40px;
  padding: 24px;
  border-left: 4px solid var(--paprika);
  background: var(--paper-warm);
}

.allergen-responsibility > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--paprika);
  border-radius: 50%;
  color: var(--paprika);
  font-family: var(--display);
  font-weight: 900;
}

.allergen-responsibility p {
  margin-bottom: 0;
  color: #59464f;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .allergen-journey {
    grid-template-columns: minmax(0, 1fr);
  }

  .allergen-journey > li > div {
    margin-top: 18px;
  }

  .allergen-focus,
  .allergen-responsibility {
    padding: 22px;
  }
}

.food-section {
  background: var(--paper-warm);
}

.food-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 11vw, 145px);
}

.food-title-wrap h2 {
  margin-top: 26px;
}

.food-intro {
  max-width: 650px;
  margin-bottom: 48px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 720;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.food-details > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

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

.food-details strong {
  font-family: var(--display);
}

.food-details span {
  color: #64515a;
  font-size: 0.91rem;
}

.allergen-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-top: 36px;
  padding: 22px;
  border-left: 4px solid var(--paprika);
  background: rgba(255, 250, 245, 0.78);
}

.allergen-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--paprika);
  border-radius: 50%;
  color: var(--paprika);
  font-family: var(--display);
  font-weight: 900;
}

.allergen-note p {
  margin-bottom: 0;
  color: #59464f;
  font-size: 0.84rem;
}

.proof-section {
  background: var(--ink);
  color: #fff;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 120px);
}

.proof-copy h2 {
  margin: 28px 0 26px;
  color: #fff;
}

.proof-copy > .proof-intro {
  max-width: 540px;
  margin-bottom: 0;
  color: #dbcbd2;
  font-size: 1rem;
}

.ai-purpose {
  max-width: 540px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 5px solid var(--paprika);
  background: rgba(255, 255, 255, 0.06);
}

.ai-purpose > span {
  display: block;
  color: #f3b6cd;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ai-purpose > strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.15;
}

.ai-purpose > p {
  margin: 12px 0 0;
  color: #dbcbd2;
  font-size: 0.8rem;
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.proof-grid > div {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.proof-grid dt {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1;
}

.proof-grid dd {
  max-width: 230px;
  margin: 18px 0 0;
  color: #f3b6cd;
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.45;
}

.proof-method {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #e4cad6;
  font-size: 0.82rem;
  line-height: 1.65;
}

.proof-method strong {
  color: #fff;
}

.interest-section {
  border-bottom: 1px solid var(--line);
  background: var(--rose);
}

.interest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(54px, 9vw, 125px);
  align-items: start;
}

.interest-receipt {
  max-width: 560px;
  margin-top: 38px;
  padding: 20px 22px 22px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 12px 0 rgba(139, 34, 82, 0.1);
}

.interest-receipt > span,
.form-heading > span {
  display: block;
  padding-bottom: 13px;
  border-bottom: 1px dashed rgba(28, 6, 18, 0.35);
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.interest-receipt ol {
  margin: 0;
  padding: 6px 0 0;
  list-style: none;
}

.interest-receipt li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.interest-receipt li strong {
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.interest-receipt > p {
  margin: 16px 0 0;
  color: #6a5961;
  font-size: 0.72rem;
  line-height: 1.5;
}

.interest-form {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 18px 22px 0 var(--wine);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading strong {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.015em;
  line-height: 1;
}

.form-heading p {
  margin: 10px 0 0;
  color: #76656d;
  font-size: 0.72rem;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(130px, 0.7fr);
  gap: 16px;
}

.form-field label {
  font-family: var(--display);
  font-size: 0.79rem;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(28, 6, 18, 0.42);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.form-field input:hover,
.form-field select:hover {
  border-color: var(--ink);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--wine);
  outline: 3px solid rgba(207, 95, 55, 0.28);
  outline-offset: 1px;
}

.form-hint {
  color: #76656d;
  font-size: 0.7rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 3px;
  color: #59464f;
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.consent-field a {
  color: var(--wine);
  font-weight: 750;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 12px 0 0;
  color: #76656d;
  font-size: 0.82rem;
  text-align: center;
}

.response-page {
  min-height: 100vh;
  background: var(--paper-warm);
}

.response-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-block: 56px;
}

.response-ticket {
  width: min(620px, 100%);
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 20px 0 var(--wine);
}

.response-ticket .section-number {
  margin-bottom: 26px;
}

.response-ticket h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 5.4rem);
}

.response-ticket > p:not(.section-number) {
  max-width: 520px;
  color: #59464f;
}

.response-ticket .button {
  margin-top: 14px;
}

.response-email {
  display: inline-block;
  margin: 24px 0 0 18px;
}

.about-section {
  padding-block: clamp(90px, 12vw, 150px);
  border-top: 5px solid var(--paprika);
  background: var(--ink);
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr) auto;
  gap: 52px;
  align-items: end;
}

.about-grid .section-number {
  align-self: start;
  color: var(--paprika);
}

.about-grid h2 {
  margin-bottom: 24px;
  color: #fff;
}

.about-grid > div > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #e7dce1;
}

.about-section .button-dark {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.about-section .button-dark:hover {
  border-color: var(--paper-warm);
  background: var(--paper-warm);
}

.site-footer {
  padding-top: 72px;
  background: var(--ink);
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand {
  padding: 4px 12px 4px 5px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  margin-right: 8px;
  object-fit: contain;
}

.footer-top > div:first-child > p {
  margin: 12px 0 0 60px;
  color: #cdbfc6;
  font-size: 0.83rem;
}

.footer-contact {
  align-self: center;
  text-align: right;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  color: #ab9ba3;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.footer-contact .footer-region-link {
  margin-top: 12px;
  color: #cdbfc6;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 650;
}

.company-information {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 26px;
  padding-block: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #cdbfc6;
  font-size: 0.76rem;
}

.company-information p {
  margin: 0;
}

.company-information strong {
  color: #fff;
}

.privacy-notice {
  padding-block: 26px;
  color: #cdbfc6;
  font-size: 0.77rem;
}

.privacy-notice summary {
  width: fit-content;
  cursor: pointer;
  color: #fff;
  font-family: var(--display);
  font-weight: 750;
}

.privacy-notice details > div {
  max-width: 880px;
  padding-top: 18px;
}

.privacy-notice p {
  margin-bottom: 12px;
}

.privacy-notice a {
  color: #fff;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #998891;
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 650px;
  text-align: right;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: var(--shell);
  min-height: 100vh;
  margin-inline: auto;
  padding-block: 56px;
}

.not-found .eyebrow {
  margin-top: 80px;
}

.not-found h1 {
  margin-bottom: 26px;
}

.not-found > p:not(.eyebrow) {
  max-width: 560px;
  color: #64515a;
  font-size: 1.05rem;
}

.not-found .button {
  margin-top: 16px;
}

.au-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 7.5vw, 6.65rem);
}

.au-ticket-steps li {
  min-height: 88px;
}

.availability-note {
  max-width: 850px;
  margin: 42px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--paprika);
  background: var(--paper-warm);
  color: #59464f;
  font-size: 0.9rem;
}

/* Multi-page UK pre-launch site */

.mobile-menu {
  display: none;
}

.eyebrow.light,
.section-number.light,
.text-link.light {
  color: #f3dce6;
}

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

.button-light:hover {
  border-color: var(--paper-warm);
  background: var(--paper-warm);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.page-hero::after {
  content: "UB";
  position: absolute;
  right: -0.05em;
  bottom: -0.42em;
  color: rgba(139, 34, 82, 0.045);
  font-family: var(--display);
  font-size: min(38vw, 560px);
  font-weight: 900;
  letter-spacing: -0.15em;
  line-height: 1;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: end;
  min-height: 610px;
  padding-block: clamp(88px, 11vw, 138px);
}

.page-hero h1 {
  max-width: 850px;
  margin: 24px 0 0;
  font-size: clamp(2.75rem, 7.4vw, 6.75rem);
  line-height: 0.88;
}

.about-page-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.9rem);
}

.page-hero-copy {
  max-width: 570px;
  padding: 28px 0 4px 28px;
  border-top: 1px solid currentColor;
}

.page-hero-copy p {
  margin-bottom: 18px;
  color: #58454e;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.page-hero-copy .button {
  margin-top: 12px;
}

.page-hero-wine,
.about-page-hero {
  background: var(--wine);
  color: #fff;
}

.page-hero-wine::after,
.about-page-hero::after {
  color: rgba(255, 255, 255, 0.055);
}

.page-hero-wine h1,
.about-page-hero h1,
.page-hero-wine .page-hero-copy strong,
.about-page-hero .page-hero-copy strong {
  color: #fff;
}

.page-hero-wine .page-hero-copy p,
.about-page-hero .page-hero-copy p {
  color: #f4e3ea;
}

.platform-page-hero {
  background: var(--rose);
}

.route-section,
.branch-section,
.mission-section,
.company-section,
.driver-section,
.register-assurance,
.privacy-page {
  padding-block: clamp(88px, 11vw, 138px);
}

.route-section {
  background: #fffdf8;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.route-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  z-index: 1;
  background: var(--wine);
  color: #fff;
  transform: translateY(-6px);
}

.route-card > span {
  margin-bottom: 72px;
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.route-card:hover > span,
.route-card:focus-visible > span,
.route-card:hover p,
.route-card:focus-visible p {
  color: #f3dce6;
}

.route-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.route-card p {
  margin-bottom: 28px;
  color: #64515a;
  font-size: 1rem;
  line-height: 1.65;
}

.route-card strong {
  margin-top: auto;
  font-size: 0.93rem;
}

.home-value-section {
  padding-block: clamp(88px, 11vw, 132px);
  background: var(--wine);
  color: #fff;
}

.home-value-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(58px, 9vw, 122px);
}

.home-value-grid h2,
.review-boundary-grid h2,
.driver-copy h2,
.mission-grid h2,
.company-page-grid h2,
.register-assurance h2 {
  margin: 26px 0 0;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 830;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.home-value-points article {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-value-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.home-value-points strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.28rem;
}

.home-value-points p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #f1dce5;
  font-size: 1rem;
}

.page-cta {
  padding-block: clamp(64px, 8vw, 96px);
  background: var(--wine-deep);
  color: #fff;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.page-cta h2 {
  max-width: 820px;
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.page-cta p:not(.section-number) {
  max-width: 720px;
  margin-bottom: 0;
  color: #f1dce5;
  font-size: 1rem;
}

.branch-section {
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.branch-grid article {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.branch-grid article > span,
.driver-journey > li > span {
  color: var(--wine);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.branch-grid h3 {
  margin: 66px 0 12px;
  font-size: 1.45rem;
}

.branch-grid p {
  margin-bottom: 0;
  color: #64515a;
  font-size: 1rem;
}

.review-boundary-section,
.company-section {
  padding-block: clamp(84px, 10vw, 128px);
  background: var(--ink);
  color: #fff;
}

.review-boundary-grid,
.company-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: center;
}

.review-boundary-grid h2,
.company-page-grid h2 {
  color: #fff;
}

.review-boundary-grid > div:last-child > p,
.company-page-grid > div:last-child > p {
  color: #dbcbd2;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.platform-grid-five .driver-surface-card {
  grid-column: 1 / -1;
  min-height: 0;
  /* This card spans both columns, so its content is laid out across the full
     width. Left column carries the label and heading, right column the copy;
     without this the paragraph's max-width leaves half the card empty. */
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.platform-grid-five .driver-surface-card .surface-label {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 20px;
}

.platform-grid-five .driver-surface-card h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.platform-grid-five .driver-surface-card > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 46ch;
  align-self: center;
}

.platform-grid-five .driver-surface-card .surface-label,
.platform-grid-five .driver-surface-card > p:last-child {
  color: #f3dce6;
}

.platform-grid article > p:last-child,
.flow-list p,
.food-details span,
.allergen-note p {
  font-size: 1rem;
}

.capability-line li {
  font-size: 0.92rem;
}

.driver-section {
  background: var(--wine);
  color: #fff;
}

.driver-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: start;
}

.driver-copy {
  position: sticky;
  top: 116px;
}

.driver-copy .section-number {
  color: #f3b6cd;
}

.driver-copy h2 {
  color: #fff;
}

.driver-copy > p:not(.section-number) {
  color: #f1dce5;
  font-size: 1.06rem;
}

.driver-boundary {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 5px solid #f3b6cd;
  background: rgba(28, 6, 18, 0.24);
  font-size: 0.95rem !important;
}

.driver-copy > p.driver-boundary {
  color: #f4ebef;
}

.driver-boundary strong {
  color: #fff;
}

.driver-journey {
  margin: 0;
  padding: 18px 30px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 20px 0 var(--ink);
  list-style: none;
}

.driver-journey li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px dashed rgba(28, 6, 18, 0.28);
}

.driver-journey li:last-child {
  border-bottom: 0;
}

.driver-journey strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
}

.driver-journey p {
  margin: 6px 0 0;
  color: #64515a;
  font-size: 1rem;
}

.mission-section {
  background: #fffdf8;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1.62fr);
  gap: clamp(50px, 8vw, 100px);
}

.mission-grid h2 {
  max-width: 900px;
  margin-top: 0;
}

.mission-grid > div > p {
  max-width: 790px;
  color: #59464f;
  font-size: 1.08rem;
}

.mission-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.mission-principles article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.mission-principles strong {
  font-family: var(--display);
  font-size: 1.18rem;
}

.mission-principles p {
  margin: 48px 0 0;
  color: #64515a;
  font-size: 0.98rem;
}

.register-page-hero {
  padding-block: clamp(82px, 10vw, 126px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.register-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(58px, 9vw, 124px);
  align-items: start;
}

.register-page-copy h1 {
  margin: 24px 0;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
}

.register-page-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #59464f;
  font-size: 1.08rem;
}

.register-assurance {
  background: var(--wine);
  color: #fff;
}

.register-assurance-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(260px, 0.72fr) repeat(2, minmax(200px, 0.5fr));
  gap: 42px;
  align-items: start;
}

.register-assurance h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.register-assurance h3 {
  color: #fff;
  font-size: 1.22rem;
}

.register-assurance p {
  color: #f1dce5;
  font-size: 0.98rem;
}

.privacy-hero {
  padding-block: clamp(82px, 10vw, 126px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.privacy-hero-inner {
  max-width: 930px;
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 24px 0;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
}

.privacy-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  color: #59464f;
  font-size: 1.08rem;
}

.privacy-cookie-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: 28px;
  margin-top: 38px;
  padding: 24px;
  border-left: 5px solid var(--paprika);
  background: var(--paper);
}

.privacy-cookie-note strong {
  font-family: var(--display);
  font-size: 1.12rem;
}

.privacy-cookie-note span {
  color: #59464f;
  font-size: 1rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 116px;
  padding: 25px;
  border: 1px solid var(--ink);
  background: var(--rose);
}

.privacy-summary ul {
  margin: 24px 0 28px;
  padding-left: 20px;
  color: #59464f;
}

.privacy-summary li + li {
  margin-top: 9px;
}

.privacy-content h2 {
  margin-bottom: 42px;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  letter-spacing: -0.018em;
  line-height: 1;
}

.privacy-content section {
  padding-block: 25px;
  border-top: 1px solid var(--line);
}

.privacy-content section:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-content h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.privacy-content p {
  max-width: 790px;
  margin-bottom: 0;
  color: #59464f;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 24px;
  align-content: center;
}

.footer-links a {
  color: #dbcbd2;
  font-size: 0.86rem;
  font-weight: 720;
  text-underline-offset: 4px;
}

/* Readable operational copy: the design uses compact labels, not compact explanations. */

.onboarding-ticket strong {
  font-size: 1.18rem;
}

.onboarding-ticket li p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.onboarding-ticket figcaption {
  font-size: 0.85rem;
}

.onboarding-principles p {
  font-size: 1rem;
}

.interest-receipt li,
.switch-paths article > p:last-child,
.proof-grid dd,
.proof-method,
.ai-purpose > p {
  font-size: 0.92rem;
}

.interest-receipt > p,
.form-heading p,
.form-hint,
.consent-field {
  font-size: 0.82rem;
}

.form-field label {
  font-size: 0.88rem;
}

.comparison-table tbody td,
.comparison-table tbody th,
.comparison-table thead th {
  font-size: 0.92rem;
}

.comparison-caveat,
.switch-outcome .switch-boundary,
.vendor-points .visibility-note {
  font-size: 0.86rem;
}

.switch-outcome div > p,
.vendor-points p,
.platform-benefit,
.flow-list p,
.food-details span {
  font-size: 1rem;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 22px;
    padding-block: 10px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 7px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .order-rail {
    width: min(590px, calc(100% - 20px));
    margin-inline: auto;
  }

  .vendor-grid,
  .onboarding-layout,
  .food-grid,
  .proof-layout,
  .interest-layout {
    grid-template-columns: 1fr;
  }

  .onboarding-copy {
    position: static;
  }

  .switch-outcome {
    grid-template-columns: 1fr;
  }

  .switch-paths {
    grid-template-columns: 1fr;
  }

  .comparison-scroll-hint {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 42px 0 -34px;
    color: var(--wine);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    box-shadow: 1px 0 0 var(--line);
  }

  .comparison-table thead th:first-child {
    z-index: 2;
    background: var(--paper-warm);
  }

  .onboarding-ticket,
  .interest-form {
    width: min(680px, calc(100% - 20px));
    margin-inline: auto;
  }

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

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

  .flow-list li:nth-child(2) {
    border-right: 0;
  }

  .flow-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .flow-list li:nth-child(3) {
    padding-left: 0;
  }

  .about-grid {
    grid-template-columns: minmax(130px, 0.35fr) 1fr;
  }

  .about-grid .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
    gap: 10px;
    padding-block: 8px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding-bottom: 3px;
    overflow-x: visible;
  }

  .primary-nav a {
    font-size: clamp(0.61rem, 3vw, 0.72rem);
    white-space: nowrap;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    margin-right: 5px;
  }

  .wordmark {
    font-size: 1.03rem;
  }

  .header-contact {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .launch-badge {
    font-size: 0.58rem;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .header-contact {
    display: none;
  }

  .hero-grid {
    gap: 62px;
    padding-block: 68px 84px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .order-rail {
    box-shadow: 10px 13px 0 var(--rose);
    transform: rotate(0.55deg);
  }

  .ticket {
    padding-inline: 16px;
  }

  .ticket-footer {
    flex-wrap: wrap;
  }

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

  .section-heading h2,
  .vendor-lead h2,
  .onboarding-copy h2,
  .interest-copy h2,
  .food-title-wrap h2,
  .about-grid h2 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .flow-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .platform-grid,
  .capability-line,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid-five .driver-surface-card {
    grid-template-columns: 1fr;
  }

  .platform-grid-five .driver-surface-card .surface-label,
  .platform-grid-five .driver-surface-card h3,
  .platform-grid-five .driver-surface-card > p:last-child {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }

  .platform-grid-five .driver-surface-card h3 {
    margin-bottom: 14px;
  }

  .proof-grid > div {
    min-height: 0;
    padding: 26px 24px;
  }

  .platform-grid article {
    min-height: 0;
    padding: 26px 24px 30px;
  }

  .surface-label {
    margin-bottom: 30px;
  }

  .flow-list li,
  .flow-list li:first-child,
  .flow-list li:nth-child(3),
  .flow-list li:last-child {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .flow-list li:first-child {
    border-top: 0;
  }

  .flow-index {
    margin: 3px 0 0;
  }

  .vendor-grid {
    gap: 52px;
  }

  .cost-path {
    grid-template-columns: 1fr;
  }

  .cost-path .cost-arrow {
    transform: rotate(90deg);
    justify-self: start;
  }

  .comparison-table-wrap {
    margin-top: 46px;
    box-shadow: 8px 10px 0 var(--rose);
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 17px 15px;
  }

  .switch-outcome {
    margin-top: 40px;
  }

  .onboarding-layout,
  .interest-layout {
    gap: 48px;
  }

  .onboarding-ticket,
  .interest-form {
    width: calc(100% - 10px);
    box-shadow: 10px 13px 0 var(--wine);
    transform: none;
  }

  .onboarding-ticket {
    padding-inline: 12px;
  }

  .onboarding-ticket-head {
    flex-direction: column;
    gap: 4px;
  }

  .onboarding-ticket ol {
    padding-inline: 16px;
  }

  .onboarding-ticket li {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .onboarding-status {
    grid-column: 2;
    justify-self: start;
    margin-top: -5px;
  }

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

  .response-email {
    display: block;
    margin-left: 0;
  }

  .food-grid {
    gap: 40px;
  }

  .food-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid .button {
    grid-column: auto;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-contact,
  .footer-bottom p:last-child {
    text-align: left;
  }

  .footer-top > div:first-child > p {
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .page-hero-grid,
  .home-value-grid,
  .review-boundary-grid,
  .driver-layout,
  .company-page-grid,
  .register-page-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 46px;
    min-height: 0;
  }

  .page-hero-copy {
    max-width: 720px;
  }

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

  .route-card {
    min-height: 290px;
  }

  .driver-copy,
  .privacy-summary {
    position: static;
  }

  .driver-journey,
  .privacy-summary,
  .interest-form {
    width: min(680px, calc(100% - 20px));
    margin-inline: auto;
  }

  .mission-grid {
    grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1.68fr);
  }

  .mission-principles {
    grid-template-columns: 1fr;
  }

  .mission-principles article {
    min-height: 0;
  }

  .mission-principles p {
    margin-top: 18px;
  }

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

  .register-assurance-grid > .section-number {
    grid-column: 1 / -1;
  }

  .footer-top {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
    padding-block: 8px;
  }

  .primary-nav,
  .header-actions .header-contact {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .mobile-menu {
    position: relative;
    z-index: 30;
    grid-column: 3;
    grid-row: 1;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    min-width: 58px;
    min-height: 44px;
    padding: 8px 12px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu[open] summary {
    background: var(--ink);
    color: #fff;
  }

  .mobile-primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 28px));
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 10px 12px 0 var(--wine);
  }

  .mobile-primary-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
    text-decoration: none;
  }

  .mobile-primary-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-primary-nav a[aria-current="page"] {
    background: var(--rose);
    color: var(--wine-deep);
  }

  .page-hero-grid {
    padding-block: 70px 78px;
  }

  .page-hero h1,
  .about-page-hero h1,
  .privacy-hero h1,
  .register-page-copy h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .page-hero-copy {
    padding: 24px 0 0;
  }

  .route-grid,
  .branch-grid,
  .mission-grid,
  .register-assurance-grid,
  .privacy-cookie-note {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 0;
  }

  .route-card > span {
    margin-bottom: 38px;
  }

  .branch-grid article {
    min-height: 0;
  }

  .branch-grid h3 {
    margin-top: 38px;
  }

  .home-value-grid h2,
  .review-boundary-grid h2,
  .driver-copy h2,
  .mission-grid h2,
  .company-page-grid h2,
  .register-assurance h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-cta .button {
    justify-self: start;
  }

  .platform-grid-five .driver-surface-card {
    grid-column: auto;
  }

  .driver-journey,
  .privacy-summary,
  .interest-form {
    width: calc(100% - 10px);
  }

  .driver-journey {
    padding-inline: 18px;
    box-shadow: 10px 13px 0 var(--ink);
  }

  .register-page-hero,
  .privacy-hero {
    padding-block: 68px 78px;
  }

  .register-assurance-grid > .section-number {
    grid-column: auto;
  }

  .privacy-cookie-note {
    gap: 10px;
  }

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

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .wordmark {
    font-size: 0.98rem;
  }

  .page-hero h1,
  .about-page-hero h1,
  .privacy-hero h1,
  .register-page-copy h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .page-hero-copy p,
  .register-page-copy > p:not(.eyebrow),
  .privacy-hero-inner > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .route-card,
  .branch-grid article {
    padding: 23px 20px;
  }

  .onboarding-ticket li {
    padding-block: 20px;
  }

  .onboarding-ticket li p {
    font-size: 0.96rem;
  }

  .driver-journey li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .interest-form {
    padding: 24px 20px;
  }

  .privacy-summary {
    padding: 22px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Consent prompt -------------------------------------------------------
 * A NON-modal <dialog>, pinned to the bottom of the viewport. It is closed by
 * the user-agent default until consent.js calls show(), so no `hidden`
 * attribute and no display:none rule is needed to keep it out of the way, and
 * nothing here can hide a published disclosure. Non-modal is deliberate: a
 * modal backdrop would cover the skip link and the header contact call to
 * action, and would make the prompt a cookie wall. Accept and Reject share one
 * class so they are the same size, weight and colour.
 */
.consent-prompt {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  width: 100%;
  max-width: 100%;
  max-height: 80vh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  border: 0;
  border-top: 4px solid var(--wine);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 -18px 44px rgba(28, 6, 18, 0.2);
}

.consent-prompt-inner {
  width: var(--shell);
  margin-inline: auto;
  padding: 20px 0 24px;
}

.consent-prompt h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1.3;
}

.consent-prompt p {
  max-width: 74ch;
  margin: 0 0 18px;
  font-size: 0.98rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consent-actions .consent-button {
  flex: 1 1 240px;
  max-width: 330px;
}

.cookie-settings-line {
  margin: 0;
}

.cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .consent-prompt-inner {
    padding: 18px 0 20px;
  }

  .consent-actions .consent-button {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
