:root {
  --ink: #14342f;
  --muted: #58706a;
  --leaf: #1f8a62;
  --leaf-dark: #0f5f47;
  --mint: #dff5df;
  --lime: #b7e45b;
  --sun: #ffd95c;
  --coral: #ff7759;
  --receipt: #f8efd0;
  --paper: #fffdf5;
  --porcelain: #f4f6ee;
  --line: rgba(20, 52, 47, 0.14);
  --shadow: 0 22px 70px rgba(20, 52, 47, 0.18);
  --radius: 8px;
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18px 18px, rgba(31, 138, 98, 0.12) 2px, transparent 2.5px),
    linear-gradient(rgba(20, 52, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 52, 47, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 80%, transparent);
}

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.84);
  box-shadow: 0 16px 50px rgba(20, 52, 47, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(184px, 42vw);
  object-fit: contain;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.12);
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: inline-flex;
  gap: 28px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  justify-self: end;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: min(5vw, 64px);
  align-items: end;
  min-height: 92vh;
  padding: 128px min(6vw, 72px) 52px;
  overflow: hidden;
  background: #102e28;
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 43, 38, 0.94), rgba(13, 43, 38, 0.64) 52%, rgba(13, 43, 38, 0.28)),
    linear-gradient(to top, rgba(13, 43, 38, 0.7), transparent 40%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.02);
  object-fit: cover;
}

.hero-domain {
  position: absolute;
  top: 118px;
  right: min(6vw, 72px);
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 217, 92, 0.92);
  color: var(--ink);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.03em;
  transform: rotate(2deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

.eyebrow::before,
.section-label::before {
  width: 30px;
  height: 3px;
  content: "";
  background: currentColor;
}

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

h1 {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(72px, 12vw, 176px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.88;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.22);
}

h1::after {
  position: absolute;
  right: -22px;
  bottom: 10px;
  z-index: -1;
  width: 42%;
  height: 20%;
  content: "";
  background: var(--coral);
  transform: skew(-14deg) rotate(-1deg);
}

.hero-title-note {
  display: flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  margin: 0 0 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--sun);
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.82;
}

.hero-copy {
  width: min(660px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  padding: 0 24px;
}

.button.primary {
  background: var(--sun);
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(16, 46, 40, 0.72);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  min-width: 0;
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 4px;
  color: var(--sun);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-shelf {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.95), rgba(248, 239, 208, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(20, 52, 47, 0.08) 30px 31px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  transform: rotate(-1.2deg);
}

.hero-shelf::before,
.hero-shelf::after {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 10px;
  content: "";
  background: radial-gradient(circle, rgba(20, 52, 47, 0.23) 2px, transparent 2.5px);
  background-size: 14px 10px;
}

.hero-shelf::before {
  top: -5px;
}

.hero-shelf::after {
  bottom: -5px;
}

.shelf-label {
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.hero-shelf div:not(.shelf-label) {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 18px 12px;
  border-bottom: 1px dashed rgba(20, 52, 47, 0.22);
}

.hero-shelf div:last-child {
  border-bottom: 0;
}

.hero-shelf span {
  grid-row: span 2;
  color: var(--coral);
  font-size: 30px;
  font-weight: 1000;
  line-height: 1;
}

.hero-shelf strong,
.hero-shelf em {
  display: block;
}

.hero-shelf strong {
  font-size: 22px;
  line-height: 1.1;
}

.hero-shelf em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.home-redesign .hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  min-height: 94vh;
  background: var(--sun);
  color: var(--ink);
}

.home-redesign .hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 217, 92, 0.96) 0 36%, rgba(183, 228, 91, 0.82) 36% 50%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(20, 52, 47, 0.08) 0 1px, transparent 1px 36px);
  mix-blend-mode: normal;
}

.home-redesign .hero::after {
  background:
    linear-gradient(112deg, rgba(255, 217, 92, 0.68) 0 32%, rgba(20, 52, 47, 0.12) 32% 52%, rgba(13, 43, 38, 0.58) 52% 100%),
    linear-gradient(to top, rgba(13, 43, 38, 0.55), transparent 44%);
}

.home-redesign .hero-media img {
  filter: saturate(1.18) contrast(1.04);
}

.home-redesign .hero-content {
  width: min(820px, 100%);
}

.home-redesign .hero .eyebrow {
  color: var(--leaf-dark);
}

.home-redesign h1 {
  color: var(--ink);
  font-size: clamp(86px, 13.5vw, 190px);
  text-shadow: none;
}

.home-redesign h1::after {
  right: -34px;
  bottom: 8px;
  width: 48%;
  height: 18%;
  background: var(--coral);
}

.home-redesign .hero-title-note {
  background: var(--ink);
  color: var(--sun);
  box-shadow: 8px 8px 0 rgba(20, 52, 47, 0.14);
}

.home-redesign .hero-copy {
  color: var(--ink);
  font-weight: 800;
}

.home-redesign .button.ghost {
  border-color: rgba(20, 52, 47, 0.28);
  background: rgba(255, 253, 245, 0.38);
  color: var(--ink);
}

.home-redesign .button.primary {
  background: var(--ink);
  color: var(--sun);
  box-shadow: 7px 7px 0 rgba(20, 52, 47, 0.16);
}

.home-redesign .hero-panel {
  border: 2px solid rgba(20, 52, 47, 0.24);
  background: rgba(255, 253, 245, 0.82);
  box-shadow: 12px 12px 0 rgba(20, 52, 47, 0.16);
}

.home-redesign .hero-panel div + div {
  border-left-color: rgba(20, 52, 47, 0.16);
}

.home-redesign .hero-panel strong {
  color: var(--leaf-dark);
}

.home-redesign .hero-panel span {
  color: var(--muted);
  font-weight: 800;
}

.hero-market-code {
  position: absolute;
  left: min(6vw, 72px);
  bottom: 26px;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(20, 52, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.hero-route {
  position: absolute;
  right: min(6vw, 72px);
  bottom: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  width: min(560px, calc(100% - 144px));
  border: 2px solid rgba(20, 52, 47, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(20, 52, 47, 0.15);
}

.hero-route span {
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 1000;
  text-align: center;
}

.hero-route span:nth-child(2) {
  background: var(--lime);
}

.hero-route span:nth-child(3) {
  background: var(--coral);
  color: #fff;
}

.hero-route span:nth-child(4) {
  background: var(--sun);
}

.home-redesign .hero-shelf {
  transform: rotate(2deg);
}

.ticker {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  min-width: 190px;
  padding: 17px 22px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 1000;
  text-align: center;
}

.ticker span:nth-child(even) {
  background: var(--lime);
}

.ticker span:nth-child(3n) {
  background: var(--coral);
  color: #fff;
}

.band {
  padding: 94px min(6vw, 72px);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: min(8vw, 90px);
  align-items: end;
}

.intro-grid p {
  margin-bottom: 10px;
  font-size: 19px;
}

.intro-stamp {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--receipt);
  color: var(--ink);
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 7px 7px 0 var(--leaf);
  transform: rotate(-1deg);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.category-strip article {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0e2b25;
  color: #fff;
}

.category-strip article::before {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  content: "";
  background: var(--sun);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.1);
}

.category-strip img {
  width: 100%;
  height: 100%;
  opacity: 0.62;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.category-strip article:hover img {
  opacity: 0.74;
  transform: scale(1.04);
}

.category-strip article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(12, 41, 35, 0.95), rgba(12, 41, 35, 0.08));
}

.category-strip article div {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  z-index: 1;
}

.category-strip span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--coral);
  color: var(--sun);
  font-size: 14px;
  font-weight: 900;
}

.category-strip h3 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
}

.category-strip p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.promise {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: min(7vw, 84px);
  align-items: start;
  background:
    linear-gradient(115deg, rgba(183, 228, 91, 0.22), transparent 42%),
    var(--porcelain);
}

.promise-copy {
  position: sticky;
  top: 118px;
}

.promise-list {
  display: grid;
  gap: 14px;
}

.promise-list article,
.partner-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.78);
  box-shadow: 0 10px 35px rgba(20, 52, 47, 0.06);
}

.promise-list article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.promise-list article::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  content: "";
  background: repeating-linear-gradient(135deg, var(--sun) 0 7px, var(--lime) 7px 14px);
  opacity: 0.9;
}

.promise-list h3,
.partner-grid h3 {
  margin-bottom: 8px;
}

.promise-list p,
.partner-grid p {
  margin-bottom: 0;
}

.system {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(300px, 0.82fr);
  gap: min(7vw, 86px);
  align-items: center;
  padding: 110px min(6vw, 72px);
  background:
    linear-gradient(90deg, var(--paper), rgba(255, 217, 92, 0.12)),
    var(--paper);
}

.system-visual {
  position: relative;
}

.system-visual img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.floating-metric {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.9);
  box-shadow: 0 18px 50px rgba(20, 52, 47, 0.2);
  backdrop-filter: blur(15px);
}

.floating-metric::before {
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 14px;
  content: "";
  background: var(--coral);
}

.floating-metric span,
.floating-metric strong {
  display: block;
}

.floating-metric span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.floating-metric strong {
  font-size: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 4px solid var(--mint);
  border-radius: 50%;
  content: "";
  background: var(--leaf);
}

.partner {
  background:
    linear-gradient(135deg, rgba(255, 119, 89, 0.18), transparent 38%),
    linear-gradient(45deg, rgba(183, 228, 91, 0.13), transparent 44%),
    #173e37;
  color: #fff;
}

.partner .section-label,
.partner p {
  color: rgba(255, 255, 255, 0.7);
}

.partner-head {
  max-width: 850px;
  margin-bottom: 44px;
}

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

.partner-grid article {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 253, 245, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.partner-grid article::before {
  position: absolute;
  top: -36px;
  right: -20px;
  width: 112px;
  height: 112px;
  border: 18px solid rgba(255, 217, 92, 0.2);
  border-radius: 50%;
  content: "";
}

.tag {
  align-self: flex-start;
  padding: 6px 10px;
  margin-bottom: 28px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.partner-grid a {
  margin-top: auto;
  color: var(--sun);
  font-weight: 900;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: min(7vw, 84px);
  padding: 105px min(6vw, 72px);
  background:
    linear-gradient(to bottom, var(--paper), #fff9df);
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 8px 90px 160px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 18px 22px;
  background: rgba(255, 253, 245, 0.9);
}

.timeline div::before {
  width: 8px;
  height: calc(100% - 28px);
  border-radius: 99px;
  content: "";
  background: var(--leaf);
}

.timeline span {
  color: var(--leaf-dark);
  font-size: 28px;
  font-weight: 1000;
}

.timeline strong {
  font-size: 20px;
}

.timeline p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: min(7vw, 84px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 217, 92, 0.42), transparent 36%),
    linear-gradient(315deg, rgba(31, 138, 98, 0.16), transparent 42%),
    var(--porcelain);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-cards span,
.contact-cards a {
  position: relative;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.contact-cards a {
  text-decoration: none;
}

.contact-cards a:hover {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.contact-cards span::before,
.contact-cards a::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: var(--leaf);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    repeating-linear-gradient(135deg, var(--leaf) 0 12px, var(--sun) 12px 24px, var(--coral) 24px 36px) border-box;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(31, 138, 98, 0.12);
}

.lead-form button {
  margin-top: 6px;
  background: var(--leaf);
  color: #fff;
  font: inherit;
}

.lead-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  min-height: 78vh;
  padding: 148px min(6vw, 72px) 76px;
  overflow: hidden;
  background: #14342f;
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  background: var(--page-image) center / cover no-repeat;
  filter: saturate(1.08) contrast(1.02);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 43, 38, 0.94), rgba(13, 43, 38, 0.58), rgba(13, 43, 38, 0.18)),
    linear-gradient(to top, rgba(13, 43, 38, 0.78), transparent 46%);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.page-hero h1 {
  width: min(920px, 100%);
  font-size: clamp(52px, 8vw, 112px);
}

.page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

.service-hero {
  --page-image: url("./assets/fresh-produce.jpg");
}

.franchise-hero {
  --page-image: url("./assets/franchise-counter.jpg");
}

.supplier-hero {
  --page-image: url("./assets/store-aisle.jpg");
}

.about-hero {
  --page-image: url("./assets/store-aisle.jpg");
}

.product-matrix {
  background:
    linear-gradient(135deg, rgba(255, 217, 92, 0.28), transparent 34%),
    var(--paper);
}

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

.product-grid article,
.model-grid article,
.support-grid article,
.process-row article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.88);
  box-shadow: 0 12px 38px rgba(20, 52, 47, 0.07);
}

.product-grid article::after,
.support-grid article::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  content: "";
  background: rgba(183, 228, 91, 0.42);
}

.product-grid span,
.process-row span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 1000;
}

.product-grid h3,
.model-grid h3,
.support-grid h3,
.process-row h3 {
  margin-bottom: 10px;
}

.day-plan,
.support-section,
.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: min(7vw, 84px);
  align-items: start;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: min(7vw, 80px);
  align-items: center;
  padding: 110px min(6vw, 72px);
  background: #173e37;
  color: #fff;
}

.service-band img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.service-band p,
.service-band .section-label,
.service-band .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.model-section {
  background:
    linear-gradient(135deg, rgba(183, 228, 91, 0.22), transparent 42%),
    var(--porcelain);
}

.model-grid article {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(255, 217, 92, 0.35), transparent 46%),
    var(--paper);
}

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

.process {
  background:
    linear-gradient(90deg, #173e37, #204941);
  color: #fff;
}

.process .section-label,
.process p {
  color: rgba(255, 255, 255, 0.72);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-row article {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 245, 0.08);
  box-shadow: none;
}

.process-row span {
  background: var(--sun);
  color: var(--ink);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1px;
  background: var(--ink);
}

.photo-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.photo-grid img:nth-child(2) {
  height: 520px;
}

.receipt-card {
  padding: 28px;
  border: 1px dashed rgba(20, 52, 47, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.94), rgba(248, 239, 208, 0.92)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(20, 52, 47, 0.08) 30px 31px);
  box-shadow: 10px 10px 0 var(--sun);
}

.receipt-card strong,
.receipt-card span {
  display: block;
}

.receipt-card strong {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1;
}

.receipt-card span {
  margin-bottom: 20px;
  color: var(--leaf-dark);
  font-weight: 1000;
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px min(6vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer .brand-mark {
  background: var(--sun);
  color: var(--ink);
}

.site-footer .brand-logo {
  height: 58px;
  max-width: min(210px, 56vw);
  padding: 6px 8px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer .brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: var(--radius);
    background: var(--ink);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .menu-button span + span {
    margin-top: -12px;
  }

  .mobile-nav {
    position: fixed;
    top: 90px;
    right: 14px;
    left: 14px;
    z-index: 19;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 245, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 44px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--porcelain);
    font-weight: 900;
    text-align: center;
  }

  .intro-grid,
  .hero,
  .promise,
  .system,
  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .promise-copy {
    position: static;
  }

  .category-strip,
  .partner-grid,
  .product-grid,
  .model-grid,
  .support-grid,
  .process-row,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .category-strip article {
    min-height: 420px;
  }

  .timeline div {
    grid-template-columns: 8px 1fr;
    gap: 6px;
  }

  .timeline span,
  .timeline strong,
  .timeline p {
    grid-column: 2;
  }

  .hero-domain {
    display: none;
  }

  .hero-market-code,
  .hero-route {
    display: none;
  }

  .home-redesign .hero {
    grid-template-columns: 1fr;
  }

  .hero-shelf {
    display: none;
  }

  .page-hero {
    min-height: 70vh;
    padding: 128px 20px 62px;
  }

  .day-plan,
  .support-section,
  .story-section,
  .service-band {
    grid-template-columns: 1fr;
  }

  .process-row {
    gap: 1px;
  }

  .process-row article,
  .product-grid article,
  .model-grid article,
  .support-grid article {
    min-height: auto;
  }

  .photo-grid img,
  .photo-grid img:nth-child(2) {
    height: 320px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 20px 30px;
  }

  .home-redesign .hero {
    min-height: 92vh;
    padding: 118px 20px 36px;
  }

  .home-redesign .hero::before {
    background:
      linear-gradient(155deg, rgba(255, 217, 92, 0.98) 0 68%, rgba(183, 228, 91, 0.78) 68% 100%),
      repeating-linear-gradient(0deg, rgba(20, 52, 47, 0.08) 0 1px, transparent 1px 36px);
  }

  .home-redesign .hero-content {
    width: 100%;
  }

  .home-redesign .hero .eyebrow {
    display: flex;
    max-width: 320px;
    flex-wrap: wrap;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(66px, 22vw, 110px);
  }

  .home-redesign h1 {
    width: 100%;
    font-size: clamp(74px, 22vw, 92px);
    white-space: nowrap;
  }

  .home-redesign h1::after {
    right: 12px;
    bottom: 4px;
    width: 36%;
  }

  .home-redesign .hero-title-note {
    width: fit-content;
    max-width: 100%;
  }

  .home-redesign .hero-copy {
    font-size: 18px;
    line-height: 1.66;
  }

  h2 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .band,
  .system,
  .experience,
  .service-band {
    padding: 72px 20px;
  }

  .category-strip article div {
    right: 20px;
    left: 20px;
  }

  .lead-form {
    padding: 18px;
  }
}
