:root {
  --blue: #0065a8;
  --blue-dark: #064f83;
  --green: #00843d;
  --green-dark: #066735;
  --white: #ffffff;
  --ink: #10243a;
  --muted: #5e7489;
  --line: #d7e8f4;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue);
  margin: 0;
  min-width: 320px;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 24px;
  height: 66px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 13vw, 260px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
nav,
.hero-actions,
.store-row,
.partner-links {
  align-items: center;
  display: flex;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  display: grid;
  height: 42px;
  overflow: hidden;
  padding: 2px;
  place-items: center;
  width: 42px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.25rem;
}

.brand small {
  color: var(--blue-dark);
  font-size: 0.66rem;
  font-style: italic;
  font-weight: 900;
  text-align: right;
}

nav {
  color: var(--ink);
  gap: clamp(18px, 3vw, 42px);
  font-weight: 700;
}

nav a:hover {
  color: var(--green-dark);
}

main {
  overflow: hidden;
}

.hero {
  background:
    linear-gradient(135deg, rgba(0, 101, 168, 0.98), rgba(0, 132, 61, 0.94)),
    var(--blue);
  min-height: 100vh;
  overflow: hidden;
  padding: 66px clamp(22px, 14vw, 270px) 0;
  position: relative;
}

.hero::after {
  background: rgba(255, 255, 255, 0.18);
  bottom: -18vw;
  content: "";
  height: 34vw;
  left: -10vw;
  min-height: 260px;
  min-width: 260px;
  position: absolute;
  transform: rotate(-11deg);
  width: 68vw;
}

.hero-copy {
  padding-top: clamp(120px, 21vh, 250px);
  position: relative;
  z-index: 4;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 5.1vw, 6rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 10.5ch;
}

.lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 560px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.pill-button {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  min-width: 170px;
  padding: 0 24px;
}

.pill-button.primary {
  background: var(--white);
  color: var(--blue-dark);
}

.pill-button.secondary {
  background: var(--green);
  color: var(--white);
}

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

.pill-button span {
  font-size: 1.28rem;
  line-height: 1;
}

.store-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-badge {
  background: rgba(16, 36, 58, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  display: grid;
  min-height: 54px;
  min-width: 164px;
  padding: 8px 14px;
  text-align: left;
}

.store-badge:hover {
  background: var(--blue-dark);
}

.store-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
}

.store-badge strong {
  font-size: 1.02rem;
}

.food-plate {
  border-radius: 50%;
  box-shadow: 0 24px 42px rgba(16, 36, 58, 0.3);
  object-fit: cover;
  position: absolute;
  z-index: 2;
}

.food-plate-top {
  height: clamp(180px, 20vw, 340px);
  left: 52%;
  top: -190px;
  transform: translateX(-50%);
  width: clamp(180px, 20vw, 340px);
}

.food-plate-right {
  height: clamp(410px, 40vw, 740px);
  right: clamp(-260px, -11vw, -120px);
  top: clamp(190px, 31vh, 330px);
  width: clamp(410px, 40vw, 740px);
}

.food-plate-bottom {
  bottom: clamp(-280px, -17vw, -120px);
  height: clamp(310px, 30vw, 560px);
  left: clamp(240px, 34vw, 720px);
  width: clamp(310px, 30vw, 560px);
}

.partner-links {
  background: var(--white);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px clamp(22px, 14vw, 270px) 22px;
}

.partner-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 22px;
}

.partner-links a:hover {
  border-color: rgba(0, 132, 61, 0.38);
  box-shadow: 0 16px 34px rgba(0, 79, 134, 0.12);
  transform: translateY(-1px);
}

.partner-links span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.partner-links strong {
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.why-section {
  background: var(--white);
  padding: clamp(54px, 8vw, 110px) clamp(22px, 14vw, 270px);
}

.section-copy {
  margin: 0 auto clamp(48px, 7vw, 86px);
  max-width: 760px;
  text-align: center;
}

.section-copy .eyebrow {
  color: var(--green);
}

.section-copy h2 {
  color: #3f474f;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 18px;
}

.section-copy p {
  color: #6a6f76;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

.advantage-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.advantage-grid article {
  display: grid;
  justify-items: center;
}

.advantage-icon {
  align-items: center;
  border-radius: 30% 30% 34% 34%;
  color: var(--white);
  display: grid;
  font-size: 2.2rem;
  font-weight: 900;
  height: 92px;
  margin-bottom: 26px;
  place-items: center;
  width: 92px;
}

.icon-local {
  background: var(--green);
}

.icon-flex {
  background: var(--blue);
}

.icon-courier {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.advantage-grid h3 {
  color: #252b31;
  font-size: 1.16rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.advantage-grid p {
  color: #6a6f76;
  line-height: 1.55;
  margin: 0;
  max-width: 360px;
}

.site-footer {
  background: #082b40;
  color: var(--white);
  padding: clamp(44px, 6vw, 74px) clamp(22px, 14vw, 270px) 34px;
}

.footer-top {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr 1fr minmax(280px, 1.25fr);
  min-height: 250px;
}

.footer-column,
.footer-contact {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-column a,
.footer-contact a {
  color: var(--white);
  font-weight: 600;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: #bdeed3;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-badges a {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: var(--white);
  display: grid;
  min-height: 44px;
  min-width: 138px;
  padding: 6px 10px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-badges a:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.footer-badges span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 800;
}

.footer-badges strong {
  font-size: 0.94rem;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  margin-top: 34px;
  padding-top: 34px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-self: start;
}

.footer-brand .brand-mark {
  height: 42px;
  width: 42px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 900;
  text-align: right;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  justify-self: end;
  text-align: right;
}

.legal-body {
  background:
    linear-gradient(135deg, rgba(0, 101, 168, 0.12), rgba(0, 132, 61, 0.1)),
    #f7fbff;
}

.legal-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.legal-shell {
  margin: 0 auto;
  max-width: 980px;
  padding: 116px 18px 64px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 79, 134, 0.1);
  padding: clamp(24px, 5vw, 54px);
}

.legal-card h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 800;
  max-width: none;
}

.legal-card h2 {
  color: var(--blue-dark);
  font-size: 1.35rem;
  margin: 34px 0 10px;
}

.legal-card h3 {
  color: var(--green-dark);
  font-size: 1rem;
  margin: 20px 0 8px;
}

.legal-card p,
.legal-card li {
  color: #4f6072;
  line-height: 1.72;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.help-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 116px 18px 72px;
}

.help-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 247, 239, 0.9)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 79, 134, 0.1);
  margin-bottom: 18px;
  padding: clamp(24px, 5vw, 54px);
}

.help-hero h1 {
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  max-width: none;
}

.help-search {
  color: var(--blue-dark);
  display: grid;
  font-weight: 900;
  gap: 10px;
  max-width: 720px;
}

.help-search input {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 79, 134, 0.08);
  color: var(--ink);
  font: inherit;
  min-height: 56px;
  outline: none;
  padding: 0 18px;
  width: 100%;
}

.help-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 132, 61, 0.14);
}

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

.help-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(0, 79, 134, 0.08);
  min-height: 178px;
  padding: 24px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.help-article:hover {
  border-color: rgba(0, 132, 61, 0.36);
  box-shadow: 0 18px 48px rgba(0, 79, 134, 0.12);
  transform: translateY(-2px);
}

.help-article[hidden] {
  display: none;
}

.help-article span {
  color: var(--green-dark);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.help-article h2 {
  color: var(--blue-dark);
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.help-article p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-actions a {
  background: var(--blue-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 10px 14px;
}

.article-actions a:hover {
  background: var(--green-dark);
}

.empty-help {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  margin: 14px 0 0;
  padding: 22px;
  text-align: center;
}

.auth-shell {
  margin: 0 auto;
  max-width: 760px;
  padding: 116px 18px 72px;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 79, 134, 0.1);
  padding: clamp(24px, 5vw, 54px);
}

.auth-card h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 16px;
  max-width: none;
}

.auth-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.auth-form label,
.code-fields {
  display: grid;
  gap: 8px;
}

.auth-form label {
  color: var(--blue-dark);
  font-weight: 900;
}

.auth-form input,
.auth-form select {
  appearance: none;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 54px;
  outline: none;
  padding: 0 16px;
  width: 100%;
}

.auth-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-dark) 50%),
    linear-gradient(135deg, var(--blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 23px,
    calc(100% - 13px) 23px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 132, 61, 0.14);
}

.code-fields {
  gap: 18px;
}

.code-fields[hidden] {
  display: none;
}

.form-button {
  background: var(--green);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 54px;
  padding: 0 22px;
  transition: background 160ms ease, transform 160ms ease;
}

.form-button:hover:not(:disabled) {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  color: var(--blue-dark);
  font-weight: 800;
  min-height: 24px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .hero {
    padding-left: 28px;
    padding-right: 28px;
  }

  .food-plate-right {
    opacity: 0.55;
    right: -310px;
  }

  .food-plate-bottom {
    left: 28vw;
    opacity: 0.72;
  }

  .partner-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .why-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

  .footer-brand,
  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    height: auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 72px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.35rem);
  }

  .food-plate-top {
    left: 88%;
    top: -90px;
  }

  .food-plate-right {
    bottom: 58px;
    height: 330px;
    right: -190px;
    top: auto;
    width: 330px;
  }

  .food-plate-bottom {
    bottom: -120px;
    height: 300px;
    left: -80px;
    width: 300px;
  }

  .pill-button,
  .store-badge {
    width: 100%;
  }

  .partner-links {
    grid-template-columns: 1fr;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
