:root {
  --navy: #102a5c;
  --navy-2: #193d7d;
  --red: #b8232f;
  --red-2: #d53a42;
  --ink: #172033;
  --muted: #5e687a;
  --line: #dfe4ec;
  --soft: #f5f7fb;
  --soft-blue: #eef4ff;
  --white: #ffffff;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(16, 42, 92, 0.16);
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(16, 42, 92, 0.18);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--white);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.brand-mark img {
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #2e3b52;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--red);
}

.header-cta:hover,
.button-primary:hover {
  background: #9f1c27;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-outline {
  color: var(--navy);
  border-color: rgba(16, 42, 92, 0.28);
  background: var(--white);
}

.button-outline:hover,
.button-secondary:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16, 42, 92, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  align-items: center;
  padding: 118px 24px 64px;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg {
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroFade 18s infinite;
  transform: scale(1.04);
}

.hero-bg-one {
  background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=2400&q=82");
}

.hero-bg-two {
  background-image: url("https://images.unsplash.com/photo-1760463921956-b21cfa5cb2ac?auto=format&fit=crop&w=2400&q=82");
  animation-delay: 6s;
}

.hero-bg-three {
  background-image: url("https://images.unsplash.com/photo-1685930117878-4b6e76e1de42?auto=format&fit=crop&w=2400&q=82");
  animation-delay: 12s;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 31, 69, 0.92) 0%, rgba(12, 31, 69, 0.72) 42%, rgba(184, 35, 47, 0.30) 100%),
    linear-gradient(180deg, rgba(9, 18, 38, 0.48), rgba(9, 18, 38, 0.18));
}

@keyframes heroFade {
  0%,
  8% {
    opacity: 0;
    transform: scale(1.04);
  }
  14%,
  34% {
    opacity: 1;
    transform: scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  animation: riseIn 760ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

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

.section-heading p,
.pricing-intro p,
.supplier-copy > p,
.panel-copy p,
.compliance-board > p,
.contact > div p {
  max-width: 680px;
  margin: 18px 0 0;
}

.network-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.network-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.network-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.network-card p,
.buyer-flow p,
.supplier-points p,
.category-strip p,
.price-card p,
.price-card li {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.network-card.primary {
  grid-row: span 2;
  color: var(--white);
  background: var(--navy);
}

.network-card.primary h3,
.network-card.primary p,
.network-card.accent h3,
.network-card.accent p {
  color: var(--white);
}

.network-card.primary span,
.network-card.accent span {
  color: rgba(255, 255, 255, 0.72);
}

.network-card.accent {
  background: var(--red);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img,
.supplier-media img,
.photo-break img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-card.wide {
  grid-column: span 2;
}

.buyer-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 42, 92, 0.96), rgba(25, 61, 125, 0.92)),
    var(--navy);
}

.panel-copy h2,
.panel-copy p {
  color: var(--white);
}

.buyer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.buyer-stats div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.buyer-stats strong,
.data-grid strong {
  display: block;
  color: var(--red-2);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.buyer-stats span,
.data-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.buyer-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.buyer-flow article {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.buyer-fieldwork {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.buyer-photo {
  min-height: 410px;
  background: var(--soft-blue);
}

.buyer-photo img {
  height: 100%;
  object-fit: cover;
}

.fieldwork-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.fieldwork-copy p {
  margin: 16px 0 0;
}

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

.fieldwork-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft-blue);
  font-size: 13px;
  font-weight: 800;
}

.photo-break {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  padding: 12px 0 70px;
}

.photo-break figure {
  margin: 0;
}

.photo-break figure:nth-child(2) {
  transform: translateY(54px);
}

.photo-break img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.photo-break figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.suppliers {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.supplier-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.supplier-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.supplier-points article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.retailer-logos {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: -46px auto 0;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  padding: 0 0 104px;
}

.retailer-copy {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.retailer-copy h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
}

.retailer-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.retailer-grid a {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.retailer-grid a:hover,
.retailer-grid a:focus-visible {
  border-color: rgba(184, 35, 47, 0.42);
  box-shadow: 0 18px 46px rgba(16, 42, 92, 0.10);
  transform: translateY(-2px);
}

.chain-logo {
  width: auto;
  max-width: 156px;
  max-height: 58px;
  object-fit: contain;
}

.logo-walmart {
  max-width: 152px;
  max-height: 42px;
}

.logo-costco {
  max-width: 148px;
  max-height: 54px;
}

.logo-kroger {
  max-width: 132px;
  max-height: 70px;
}

.logo-albertsons {
  max-width: 146px;
  max-height: 54px;
}

.logo-wholefoods {
  max-width: 92px;
  max-height: 76px;
}

.logo-publix {
  max-width: 142px;
  max-height: 44px;
}

.logo-heb {
  max-width: 116px;
  max-height: 54px;
}

.logo-traderjoes {
  max-width: 148px;
  max-height: 36px;
}

.logo-loblaw {
  max-width: 130px;
  max-height: 74px;
}

.logo-sobeys {
  max-width: 138px;
  max-height: 50px;
}

.logo-metro {
  max-width: 132px;
  max-height: 42px;
}

.logo-saveon {
  max-width: 146px;
  max-height: 46px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.category-strip article {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.category-strip article:nth-child(2) {
  background: #fff3f4;
}

.category-strip article:nth-child(3) {
  background: var(--navy);
}

.category-strip article:nth-child(3) h3,
.category-strip article:nth-child(3) p {
  color: var(--white);
}

.category-strip article:nth-child(4) {
  background: var(--soft);
}

.compliance {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.compliance-board,
.quote-card {
  border-radius: var(--radius);
  padding: 34px;
}

.compliance-board {
  background: var(--soft);
}

.compliance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.compliance-list span {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.quote-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--red);
}

.quote-card p {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.demo-data {
  padding-top: 72px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.data-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.data-grid span {
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background: var(--navy);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p,
.price-card.featured li {
  color: var(--white);
}

.price {
  margin-top: 24px;
  color: var(--navy);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--red);
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 120px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 92, 0.18);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 35, 47, 0.18);
  border-color: var(--red);
}

.form-note {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--navy);
  font-size: 20px;
}

.site-footer p {
  max-width: 470px;
  margin: 8px 0 0;
  font-size: 14px;
}

.footer-address {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

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

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

  .hero-bg-one {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .network-grid,
  .buyer-panel,
  .buyer-fieldwork,
  .suppliers,
  .retailer-logos,
  .compliance,
  .pricing,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .network-card.primary,
  .image-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .photo-break {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .retailer-logos {
    margin-top: -22px;
  }

  .retailer-copy {
    position: static;
  }

  .retailer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-break figure:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100dvh;
    padding: 104px 18px 36px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-band {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section,
  .photo-break,
  .retailer-logos,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .network-grid,
  .buyer-flow,
  .buyer-stats,
  .data-grid,
  .pricing-grid,
  .retailer-grid {
    grid-template-columns: 1fr;
  }

  .buyer-panel,
  .compliance-board,
  .quote-card,
  .contact-form,
  .price-card,
  .fieldwork-copy {
    padding: 22px;
  }

  .buyer-photo {
    min-height: 320px;
  }

  .retailer-grid a {
    min-height: 104px;
  }

  .chain-logo {
    max-width: 150px;
  }

  .supplier-media {
    min-height: 360px;
  }

  .category-strip {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}
