:root {
  color-scheme: light;
  --background: #f6f7f2;
  --surface: #ffffff;
  --text: #17211b;
  --muted: #4f5e55;
  --brand: #176b45;
  --brand-dark: #0d4b30;
  --accent: #d8f06c;
  --border: #dce3dc;
  --focus: #8b3dff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

a {
  color: var(--brand-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.15em;
}

:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-200%);
  border-radius: 0.4rem;
  background: var(--text);
  color: #fff;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner,
.footer-inner,
.page-shell {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
}

.primary-navigation ul,
.site-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.primary-navigation a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"] {
  background: var(--background);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 1.2rem;
  height: 0.12rem;
  background: currentColor;
  content: "";
}

.menu-toggle-icon {
  position: relative;
  margin-left: 0.55rem;
}

.menu-toggle-icon::before {
  position: absolute;
  top: -0.35rem;
}

.menu-toggle-icon::after {
  position: absolute;
  top: 0.35rem;
}

.page-shell {
  min-height: 60vh;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-shell > .eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid #b8d3c2;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.72);
}

h1,
h2 {
  max-width: 20ch;
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 17ch;
  margin-bottom: 1.4rem;
  color: #102f20;
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.lead {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-dark);
}

.button-secondary:hover {
  background: #edf2ec;
}

.button-light {
  background: var(--accent);
  color: var(--text);
}

.button-light:hover {
  background: #e4f78d;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 13rem;
  margin-top: clamp(3rem, 8vw, 6rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  grid-template-columns: auto minmax(2rem, 1fr) auto minmax(2rem, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  border: 1px solid #b8d3c2;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 240, 108, 0.75), transparent 28%),
    linear-gradient(125deg, #e8f4eb, #f9faf4 60%, #e5f0e7);
  box-shadow: 0 1.5rem 4rem rgba(13, 75, 48, 0.1);
}

.hero-visual::after {
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 14rem;
  height: 14rem;
  border: 2rem solid rgba(23, 107, 69, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-visual > span:not(.visual-line) {
  position: relative;
  z-index: 1;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(23, 107, 69, 0.2);
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  text-align: center;
}

.visual-line {
  height: 0.15rem;
  background: repeating-linear-gradient(
    to right,
    var(--brand) 0,
    var(--brand) 0.4rem,
    transparent 0.4rem,
    transparent 0.75rem
  );
}

.content-section {
  margin-top: clamp(5rem, 11vw, 9rem);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading > p:last-child {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-grid,
.feature-list,
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-grid li {
  position: relative;
  min-width: 0;
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 0.7rem 1.8rem rgba(22, 52, 35, 0.045);
}

.step-grid li:nth-child(3n + 2) {
  border-color: #c8d9cd;
  background: #eef5ef;
}

.step-grid li:nth-child(3n) {
  border-color: #d8dfb0;
  background: #f8faeb;
}

.step-grid li > span,
.card-index {
  display: grid;
  width: 2.25rem;
  min-height: 2.25rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: #e2f0e6;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-grid strong {
  display: block;
  line-height: 1.35;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.split-section .section-heading {
  margin-bottom: 0;
}

.feature-list {
  border-top: 1px solid var(--border);
}

.feature-list li {
  display: grid;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--border);
  grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
}

.feature-list span,
.prose {
  color: var(--muted);
}

.partner-highlight {
  display: flex;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 240, 108, 0.2), transparent 35%),
    var(--brand-dark);
  color: #fff;
}

.partner-highlight > div {
  max-width: 43rem;
}

.partner-highlight .section-kicker {
  color: var(--accent);
}

.partner-highlight p:not(.section-kicker) {
  color: #dbe9e0;
}

.principle-section,
.stream-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.principle-section > div:last-child,
.stream-section > div:last-child {
  max-width: 50rem;
}

.principle-mark {
  display: grid;
  width: clamp(4rem, 10vw, 7rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
}

.final-cta {
  display: flex;
  margin-top: clamp(5rem, 11vw, 9rem);
  padding-block: clamp(2rem, 5vw, 3rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.final-cta h2 {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 0.7rem 1.8rem rgba(22, 52, 35, 0.045);
}

.info-card:nth-child(even) {
  border-color: #c8d9cd;
  background: #f0f6f1;
}

.info-card h3,
.timeline h3 {
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

.info-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.stream-section {
  padding: clamp(1.75rem, 5vw, 3.5rem);
  border-radius: 1rem;
  background: #e7f0e9;
}

.stream-symbol {
  position: relative;
  display: grid;
  width: clamp(4rem, 10vw, 7rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #a8c8b2;
  border-radius: 50%;
}

.stream-symbol::before,
.stream-symbol::after {
  position: absolute;
  border: 1px solid #7ca38a;
  border-radius: 50%;
  content: "";
}

.stream-symbol::before {
  inset: 18%;
}

.stream-symbol::after {
  inset: 35%;
  background: var(--brand);
}

.prose p {
  margin-top: 0;
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-top: 0;
}

.timeline li {
  display: grid;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  background: var(--surface);
}

.timeline li:nth-child(4n + 2),
.timeline li:nth-child(4n + 3) {
  border-color: #c8d9cd;
  background: #eef5ef;
}

.timeline > li > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
}

.notice {
  display: grid;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  border: 1px solid #b8d3c2;
  border-radius: 0.8rem;
  background: #e7f0e9;
}

.notice-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
}

.notice h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.notice p {
  margin: 0;
}

.connection-grid li:last-child {
  grid-column: 2;
}

.step-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-note {
  max-width: 47rem;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 0.2rem solid var(--brand);
  color: var(--muted);
}

.security-panel,
.official-details {
  display: grid;
  padding: clamp(1.5rem, 5vw, 3rem);
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid #abcab5;
  border-radius: 1rem;
  background: #e7f0e9;
}

.security-mark,
.official-mark {
  display: grid;
  width: clamp(3.5rem, 8vw, 5.5rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 850;
}

.plain-list,
.check-list,
.topic-grid {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.plain-list li + li,
.check-list li + li {
  margin-top: 0.7rem;
}

.plain-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.check-list {
  display: grid;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.check-list li,
.check-list li + li {
  margin: 0;
  padding: 1rem 1rem 1rem 2.7rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
}

.check-list li::before {
  top: 1.4rem;
  left: 1.15rem;
}

.notice-warning {
  border-color: #d1bd77;
  background: #fff7dc;
}

.notice-warning .notice-icon {
  background: #725d19;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.topic-grid li {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 99rem;
  background: var(--surface);
  font-weight: 750;
  text-align: center;
}

.official-details p:last-child {
  max-width: 50rem;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-preview {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid #d1bd77;
  border-radius: 0.65rem;
  background: #fff7dc;
  color: #59480f;
  font-weight: 700;
}

.legal-section {
  max-width: 54rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  max-width: 32ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-section p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
}

.public-details {
  display: grid;
  margin: 1.5rem 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.public-details div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  background: var(--surface);
}

.public-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.public-details dd {
  margin: 0.25rem 0 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.section {
  max-width: 52rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 1rem 3rem rgba(22, 52, 35, 0.06);
}

.section > :last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

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

.text-link {
  font-weight: 700;
}

.steps {
  padding-left: 1.4rem;
}

.steps li + li {
  margin-top: 0.75rem;
}

.site-footer {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  border-top: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(216, 240, 108, 0.11), transparent 25rem),
    #10271b;
  color: #f5f8f5;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(12rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.footer-brand {
  display: inline-flex;
  color: #fff;
}

.footer-brand img {
  display: block;
  width: 10.875rem;
  height: 2rem;
  max-width: 100%;
}

.footer-intro p {
  max-width: 31rem;
  color: #c5d3ca;
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer ul {
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.75rem 2rem;
}

.footer-navigation h2 {
  margin-bottom: 0.8rem;
  color: #a9c8b4;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-navigation a {
  display: inline-flex;
  min-height: 2.75rem;
  padding-block: 0.55rem;
  align-items: center;
  color: #f4f7f5;
  font-size: 0.98rem;
  line-height: 1.4;
}

.site-footer :focus-visible {
  outline-color: var(--accent);
}

@media (max-width: 62rem) {
  .js .menu-toggle {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .js .primary-navigation {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 1rem 2rem rgba(22, 52, 35, 0.08);
  }

  .js .menu-toggle[aria-expanded="true"] + .primary-navigation {
    display: block;
  }

  .primary-navigation ul {
    display: grid;
    width: min(72rem, 100%);
    margin-inline: auto;
  }

  .primary-navigation a {
    min-height: 2.75rem;
    padding: 0.75rem;
  }

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

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

@media (max-width: 45rem) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.25rem;
  }

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

  .visual-line {
    width: 0.15rem;
    height: 1.5rem;
    margin-inline: auto;
    background: repeating-linear-gradient(
      to bottom,
      var(--brand) 0,
      var(--brand) 0.4rem,
      transparent 0.4rem,
      transparent 0.75rem
    );
  }

  .step-grid,
  .split-section,
  .card-grid-two,
  .card-grid-three,
  .timeline,
  .check-list,
  .topic-grid,
  .public-details {
    grid-template-columns: 1fr;
  }

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

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .partner-highlight,
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-section,
  .stream-section,
  .security-panel,
  .official-details {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .timeline li:nth-child(odd),
  .timeline li:nth-child(even) {
    padding: 1.25rem;
  }

  .connection-grid li:last-child {
    grid-column: auto;
  }
}

/* Live cooking and considerate feedback */

.live-experience,
.restaurant-dialogue {
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 103, 36, 0.2);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 103, 36, 0.12), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(87, 214, 107, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.018);
}

.experience-grid,
.restaurant-dialogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-grid article,
.restaurant-dialogue-grid article {
  min-width: 0;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(10, 14, 19, 0.76);
}

.experience-grid article:nth-child(even),
.restaurant-dialogue-grid article:nth-child(even) {
  border-color: rgba(87, 214, 107, 0.28);
}

.experience-grid h3,
.restaurant-dialogue-grid h3 {
  margin: 0.65rem 0;
  line-height: 1.3;
}

.experience-grid p,
.restaurant-dialogue-grid p {
  margin: 0;
  color: var(--muted);
}

.experience-grid article > img,
.restaurant-dialogue-grid article > img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.experience-label {
  display: inline-flex;
  min-height: 1.7rem;
  align-items: center;
  gap: 0.45rem;
  color: #ff9b67;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-label i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #76e486;
  box-shadow: 0 0 0.8rem rgba(87, 214, 107, 0.6);
}

.experience-note {
  margin: 1.25rem 0 0;
  color: #cdd5d2;
  font-size: 0.94rem;
}

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

.restaurant-dialogue-grid .card-note {
  margin-top: 0.9rem;
  color: #cdd5d2;
  font-size: 0.92rem;
}

@media (max-width: 45rem) {
  .experience-grid,
  .restaurant-dialogue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 26.25rem) {
  body {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .header-inner,
  .footer-inner,
  .page-shell {
    width: min(72rem, calc(100% - 1.25rem));
  }

  .page-shell {
    padding-block: 3rem 4rem;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.35rem);
  }

  h2 {
    line-height: 1.18;
  }

  .lead,
  .section-heading > p:last-child,
  .prose p {
    line-height: 1.7;
  }

  .content-section {
    margin-top: 5.5rem;
  }

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

  .button {
    width: 100%;
    min-height: 3rem;
  }

  .hero-visual {
    margin-top: 2.5rem;
    padding: 1.25rem;
  }

  .step-grid li,
  .timeline li,
  .info-card {
    padding: 1.3rem;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }
}

@media (max-width: 22rem) {
  .footer-navigation {
    grid-template-columns: 1fr;
  }
}

/* Foodstream brand redesign */

:root {
  color-scheme: dark;
  --background: #0a0e13;
  --surface: #151a21;
  --text: #f4f5f4;
  --muted: #b8c0bd;
  --brand: #ff6724;
  --brand-dark: #ff8a38;
  --accent: #57d66b;
  --border: rgba(255, 255, 255, 0.12);
  --focus: #ffd166;
}

body {
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 86, 28, 0.1), transparent 28rem),
    radial-gradient(circle at 90% 22%, rgba(75, 190, 83, 0.08), transparent 32rem),
    var(--background);
}

a {
  color: #ff9b67;
}

.site-header {
  position: sticky;
  top: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 19, 0.82);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(1rem);
}

.header-inner {
  min-height: 4.25rem;
}

.brand,
.header-inner .brand {
  color: var(--text);
}

.primary-navigation {
  margin-left: auto;
}

.primary-navigation a {
  color: #c9cfcd;
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"] {
  background: rgba(255, 103, 36, 0.1);
  color: #fff;
}

.menu-toggle {
  min-height: 2.75rem;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-cta {
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.page-shell {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-shell > .eyebrow {
  border-color: rgba(255, 103, 36, 0.32);
  background: rgba(255, 103, 36, 0.08);
  color: #ff9b67;
}

h1 {
  color: var(--text);
  text-wrap: balance;
}

h2,
h3,
strong {
  color: var(--text);
}

.lead,
.section-heading > p:last-child,
.feature-list span,
.prose,
.info-card p,
.timeline p,
.step-grid p,
.section-note,
.official-details p:last-child,
.legal-section p,
.public-details dt {
  color: var(--muted);
}

.section-kicker,
.eyebrow {
  color: #ff8a38;
}

.button {
  border: 1px solid rgba(255, 137, 58, 0.5);
  background: linear-gradient(135deg, #c74318, #a82d1c);
  box-shadow: 0 0.8rem 2rem rgba(240, 68, 36, 0.2);
  color: #fff;
}

.button:hover {
  background: linear-gradient(135deg, #b93a18, #96261a);
}

.button-secondary,
.button-light {
  border-color: rgba(87, 214, 107, 0.5);
  background: rgba(28, 122, 51, 0.7);
  box-shadow: 0 0.8rem 2rem rgba(44, 168, 66, 0.14);
  color: #fff;
}

.button-secondary:hover,
.button-light:hover {
  background: rgba(35, 151, 61, 0.82);
}

.page-home .page-shell {
  display: grid;
  min-height: calc(100vh - 4.25rem);
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(29rem, 0.95fr);
  grid-template-rows: auto auto auto auto 1fr;
  align-items: center;
  column-gap: clamp(3rem, 7vw, 7rem);
}

.page-home .page-shell > .eyebrow,
.page-home .page-shell > h1,
.page-home .page-shell > .lead,
.page-home .page-shell > .hero-actions {
  grid-column: 1;
}

.page-home .page-shell > .eyebrow {
  width: max-content;
  align-self: end;
}

.page-home .page-shell > h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.page-home .hero-actions {
  align-self: start;
}

.page-home .hero-visual {
  min-height: 29rem;
  margin: 0;
  padding: 2rem;
  grid-column: 2;
  grid-row: 1 / 6;
  grid-template-columns: minmax(0, 0.8fr) 2.5rem minmax(0, 1.15fr) 2.5rem minmax(0, 0.8fr);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 72% 20%, rgba(82, 203, 90, 0.25), transparent 36%),
    radial-gradient(circle at 40% 82%, rgba(255, 84, 29, 0.28), transparent 38%),
    linear-gradient(140deg, rgba(31, 38, 46, 0.92), rgba(13, 18, 23, 0.96));
  box-shadow:
    0 2rem 6rem rgba(0, 0, 0, 0.32),
    0 0 5rem rgba(255, 92, 30, 0.06);
}

.hero-visual::after {
  right: -6rem;
  bottom: -8rem;
  border-color: rgba(255, 103, 36, 0.08);
}

.hero-visual > span:not(.visual-line) {
  display: flex;
  min-width: 0;
  min-height: 9.5rem;
  padding: 1.25rem 0.8rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(17, 23, 29, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  color: var(--text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.hero-visual .visual-stream {
  min-height: 12rem;
  border-color: rgba(255, 103, 36, 0.42);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 103, 36, 0.2), transparent 65%),
    rgba(20, 25, 31, 0.93);
  box-shadow: 0 1.5rem 3rem rgba(255, 75, 28, 0.12);
}

.hero-visual img {
  width: 2.5rem;
  height: 2.5rem;
}

.hero-visual strong {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
}

.hero-visual small {
  color: #c4cbc8;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.visual-line {
  position: relative;
  height: 0.16rem;
  background: linear-gradient(90deg, rgba(255, 103, 36, 0.3), #ff6724);
}

.visual-line::after {
  position: absolute;
  top: 50%;
  right: -0.1rem;
  width: 0.55rem;
  height: 0.55rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 0.16rem solid #ff6724;
  border-right: 0.16rem solid #ff6724;
  content: "";
}

.page-home .page-shell > .content-section,
.page-home .page-shell > .final-cta,
.page-home .page-shell > .notice {
  grid-column: 1 / -1;
}

.page-home .content-section:nth-of-type(even) {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0, rgba(72, 187, 83, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.025);
}

.step-grid li,
.info-card,
.timeline li,
.check-list li,
.topic-grid li,
.public-details div,
.section {
  border-color: var(--border);
  background: linear-gradient(145deg, rgba(25, 31, 38, 0.96), rgba(17, 22, 28, 0.96));
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.13);
}

.step-grid li:nth-child(3n + 2),
.step-grid li:nth-child(3n),
.info-card:nth-child(even),
.timeline li:nth-child(4n + 2),
.timeline li:nth-child(4n + 3) {
  border-color: rgba(255, 103, 36, 0.2);
  background: linear-gradient(145deg, rgba(31, 33, 37, 0.96), rgba(20, 24, 29, 0.96));
}

.step-grid li > span,
.card-index {
  background: rgba(255, 103, 36, 0.12);
  color: #ff9b67;
}

.step-grid li:nth-child(even) > span,
.info-card:nth-child(even) .card-index {
  background: rgba(87, 214, 107, 0.12);
  color: #76e486;
}

.feature-list,
.feature-list li,
.final-cta,
.legal-section {
  border-color: var(--border);
}

.partner-highlight {
  border: 1px solid rgba(255, 103, 36, 0.22);
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 92, 28, 0.24), transparent 38%),
    linear-gradient(140deg, #1a2027, #10151b);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.partner-highlight p:not(.section-kicker) {
  color: #cbd1cf;
}

.principle-mark {
  background: linear-gradient(135deg, #ff851f, #f04424);
  color: #fff;
}

.stream-section,
.security-panel,
.official-details,
.notice {
  border-color: rgba(87, 214, 107, 0.24);
  background:
    radial-gradient(circle at 10% 10%, rgba(80, 200, 90, 0.12), transparent 32%),
    #141b20;
}

.stream-symbol {
  border-color: rgba(255, 103, 36, 0.4);
}

.stream-symbol::before,
.stream-symbol::after {
  border-color: #ff6724;
}

.stream-symbol::after,
.security-mark,
.official-mark,
.notice-icon,
.timeline > li > span {
  background: linear-gradient(135deg, #ff851f, #f04424);
}

.notice-warning,
.legal-preview {
  border-color: rgba(255, 177, 61, 0.38);
  background: #241d12;
  color: #f2d69a;
}

.notice-warning .notice-icon {
  background: #b56d16;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 92, 28, 0.08), transparent 30rem),
    #090d11;
}

.footer-inner {
  grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
}

.footer-brand img {
  width: 11.875rem;
  height: 2.25rem;
}

.footer-intro p {
  color: #adb7b3;
}

.footer-navigation h2 {
  color: #ff9b67;
}

.footer-navigation a {
  color: #d7dcda;
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8f9995;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #bfc7c4;
}

@media (max-width: 62rem) {
  .header-cta {
    display: none;
  }

  .js .primary-navigation {
    background: rgba(10, 14, 19, 0.98);
  }

  .page-home .page-shell {
    display: block;
    min-height: 0;
    padding-top: clamp(3.5rem, 8vw, 5rem);
  }

  .page-home .hero-visual {
    min-height: 22rem;
    margin-top: 3.5rem;
  }

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

@media (max-width: 45rem) {
  .page-home .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual > span:not(.visual-line),
  .hero-visual .visual-stream {
    min-height: 8.5rem;
  }

  .visual-line {
    width: 0.16rem;
    height: 1.75rem;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(255, 103, 36, 0.3), #ff6724);
  }

  .visual-line::after {
    top: auto;
    right: 50%;
    bottom: -0.05rem;
    transform: translateX(50%) rotate(135deg);
  }

  .page-home .content-section:nth-of-type(even) {
    padding: 1.35rem;
    border-radius: 1.1rem;
  }

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

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

/* Restaurant partner benefits */

.partner-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-benefit-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 103, 36, 0.1), transparent 45%),
    linear-gradient(145deg, rgba(25, 31, 38, 0.98), rgba(14, 19, 24, 0.98));
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.16);
}

.partner-benefit-card:nth-child(even) {
  border-color: rgba(87, 214, 107, 0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(87, 214, 107, 0.1), transparent 45%),
    linear-gradient(145deg, rgba(23, 31, 34, 0.98), rgba(14, 19, 24, 0.98));
}

.partner-benefit-card > img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
}

.partner-benefit-card h3 {
  margin: 0 0 0.7rem;
}

.partner-benefit-card p {
  margin: 0;
  color: var(--muted);
}

.partner-benefit-card p + p {
  margin-top: 0.8rem;
}

.partner-benefit-card .card-note {
  color: #cdd5d2;
  font-size: 0.92rem;
}

.metric-preview {
  display: grid;
  margin-top: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.metric-preview span {
  display: flex;
  min-width: 0;
  min-height: 4.8rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7rem;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(7, 11, 15, 0.5);
}

.metric-preview small {
  color: #aeb8b4;
  font-size: 0.76rem;
  line-height: 1.3;
}

.metric-preview strong {
  color: #76e486;
  font-size: 1.35rem;
}

.partner-connection-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.partner-connection-steps li {
  min-width: 0;
  padding: 1.25rem;
  border-top: 2px solid rgba(255, 103, 36, 0.48);
  background: linear-gradient(180deg, rgba(255, 103, 36, 0.07), transparent);
}

.partner-connection-steps li:nth-child(even) {
  border-color: rgba(87, 214, 107, 0.5);
  background: linear-gradient(180deg, rgba(87, 214, 107, 0.07), transparent);
}

.partner-connection-steps li > span {
  display: block;
  margin-bottom: 1rem;
  color: #ff9b67;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.partner-connection-steps li:nth-child(even) > span {
  color: #76e486;
}

.partner-connection-steps strong {
  display: block;
  line-height: 1.35;
}

.partner-connection-steps p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 62rem) {
  .partner-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 45rem) {
  .partner-benefit-grid,
  .partner-connection-steps {
    grid-template-columns: 1fr;
  }

}
