:root {
  --green-950: #102e22;
  --green-900: #173d2b;
  --green-800: #20543a;
  --green-700: #2d6947;
  --green-100: #e4eee3;
  --lime: #c9e85d;
  --lime-bright: #ddf67e;
  --cream: #f5f1e7;
  --paper: #fbfaf6;
  --ink: #1c211d;
  --muted: #686d66;
  --line: #d9ddd4;
  --orange: #eb713e;
  --white: #fff;
  --shadow: 0 18px 48px rgba(24, 50, 36, 0.12);
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.announcement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 48px;
  color: var(--white);
  background: var(--green-950);
  font-size: 12px;
  font-weight: 600;
}

.announcement p {
  margin: 0;
}

.announcement-close {
  position: absolute;
  right: 22px;
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: 0;
  place-items: center;
  cursor: pointer;
}

.announcement-close svg {
  width: 15px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 5vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(16,46,34,.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.brand-mark svg {
  width: 19px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color .2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--green-700);
}

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

.icon-button,
.account-button,
.cart-button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 0;
  cursor: pointer;
}

.icon-button {
  width: 40px;
  background: transparent;
}

.icon-button svg,
.account-button svg,
.cart-button svg,
.filter-button svg {
  width: 18px;
}

.account-button {
  gap: 8px;
  padding: 0 12px;
  background: transparent;
}

.cart-button {
  position: relative;
  gap: 8px;
  min-width: 88px;
  padding: 0 12px;
  color: white;
  background: var(--green-950);
  border-radius: 4px;
}

.cart-count {
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  place-items: center;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 110px;
  right: 0;
  left: 0;
  display: none;
  padding: 16px 5vw 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100vh - 110px));
  align-items: center;
  overflow: hidden;
  color: white;
  background-image: url("assets/images/hero-market.jpg");
  background-position: center 52%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,32,22,.88) 0%, rgba(11,36,24,.62) 43%, rgba(7,26,18,.08) 76%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 90vw);
  margin-left: 8vw;
  padding: 70px 0 100px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime-bright);
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 620px;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(55px, 6.7vw, 94px);
  font-weight: 600;
  line-height: .91;
}

.hero h1 em {
  color: var(--lime-bright);
  font-weight: inherit;
}

.hero-content > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.dark-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.primary-button {
  color: var(--green-950);
  background: var(--lime);
}

.primary-button:hover {
  background: var(--lime-bright);
}

.primary-button svg,
.secondary-button svg,
.dark-button svg,
.checkout-button svg,
.text-link svg,
.light-link svg {
  width: 17px;
}

.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 700;
}

.hero-stat {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(16,46,34,.84);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.farmer-faces {
  display: flex;
}

.farmer-faces img {
  width: 36px;
  height: 36px;
  margin-left: -8px;
  object-fit: cover;
  border: 2px solid var(--green-950);
  border-radius: 50%;
}

.farmer-faces img:first-child {
  margin-left: 0;
}

.hero-stat p {
  display: grid;
  margin: 0;
}

.hero-stat strong {
  font-size: 16px;
}

.hero-stat span {
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 6vw;
  background: var(--lime);
}

.platform-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 14px;
  padding: 0 5%;
  border-right: 1px solid rgba(16,46,34,.18);
}

.platform-strip article:last-child {
  border: 0;
}

.platform-strip svg {
  width: 26px;
  color: var(--green-950);
}

.platform-strip div {
  display: grid;
  gap: 3px;
}

.platform-strip strong {
  font-size: 13px;
}

.platform-strip span {
  color: rgba(16,46,34,.68);
  font-size: 11px;
}

.ai-workspace-section {
  padding: 100px max(5vw, calc((100vw - 1320px)/2));
  color: var(--white);
  background: var(--green-950);
}

.workspace-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.workspace-heading .section-kicker {
  color: var(--lime);
}

.workspace-heading h2 {
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  line-height: .96;
}

.workspace-heading h2 em {
  color: var(--lime);
  font-weight: inherit;
}

.workspace-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.7;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 18px;
}

.workspace-console {
  min-height: 360px;
  padding: 26px;
  background: #1b4933;
  border: 1px solid rgba(255,255,255,.15);
}

.console-topline,
.console-signal-row,
.workspace-tool {
  display: flex;
  align-items: center;
}

.console-topline {
  justify-content: space-between;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.console-topline > span:first-child,
.console-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.console-topline svg,
.console-signal-row svg {
  width: 15px;
  color: var(--lime);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--lime);
  background: rgba(201,232,93,.1);
  border: 1px solid rgba(201,232,93,.24);
  font-size: 10px;
}

.live-pill i,
.ai-status span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.console-prompt {
  max-width: 650px;
  margin: 70px 0 55px;
}

.prompt-label {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.console-prompt h3 {
  max-width: 600px;
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 43px);
  font-weight: 600;
  line-height: 1.08;
}

.primary-button.compact {
  min-height: 43px;
  padding: 0 16px;
  font-size: 12px;
}

.console-signal-row {
  justify-content: flex-start;
  gap: 26px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.workspace-tools {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.14);
}

.workspace-tool {
  width: 100%;
  min-height: 119px;
  gap: 14px;
  padding: 20px;
  color: var(--white);
  text-align: left;
  background: var(--green-900);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}

.workspace-tool:hover {
  padding-left: 25px;
  background: var(--green-800);
}

.workspace-tool > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 5px;
}

.workspace-tool strong {
  font-size: 14px;
}

.workspace-tool small {
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

.workspace-tool > svg {
  width: 16px;
  color: var(--lime);
}

.tool-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--lime);
  background: rgba(201,232,93,.12);
  place-items: center;
}

.tool-icon svg {
  width: 18px;
}

.market-section,
.steps-section {
  padding: 95px max(5vw, calc((100vw - 1320px)/2));
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2,
.farmers-copy h2,
.join-section h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.04;
}

.market-tools {
  display: flex;
  gap: 8px;
}

.search-field {
  display: flex;
  align-items: center;
  width: 250px;
  height: 42px;
  gap: 10px;
  padding: 0 13px;
  background: white;
  border: 1px solid var(--line);
}

.search-field:focus-within {
  border-color: var(--green-700);
}

.search-field svg {
  width: 17px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  outline: 0;
  background: transparent;
  border: 0;
  font-size: 13px;
}

.filter-button {
  gap: 8px;
  padding: 0 15px;
  background: white;
  border: 1px solid var(--line);
}

.category-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tab {
  min-height: 38px;
  padding: 0 17px;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.category-tab:hover {
  border-color: var(--line);
}

.category-tab.active {
  color: white;
  background: var(--green-950);
  border-color: var(--green-950);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #e9ece4;
  border-radius: 4px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  color: var(--green-950);
  background: var(--lime-bright);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--green-950);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(16,46,34,.25);
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.quick-add:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.quick-add svg {
  width: 18px;
}

.product-info {
  padding-top: 14px;
}

.product-source {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
}

.product-source svg {
  width: 12px;
}

.product-info h3 {
  margin: 6px 0;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.1;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
}

.product-price span,
.product-distance {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.empty-state {
  padding: 60px 0;
  color: var(--muted);
  text-align: center;
}

.market-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.market-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.market-footer p svg {
  width: 15px;
  color: var(--green-700);
}

.secondary-button {
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--green-950);
}

.offerings-section {
  padding: 90px max(5vw, calc((100vw - 1320px)/2));
  background: var(--green-100);
}

.offerings-intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .72fr);
  align-items: end;
  gap: 70px;
  padding-bottom: 45px;
}

.offerings-intro h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.04;
}

.offerings-intro > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.offerings-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(16,46,34,.18);
}

.offering-group {
  min-width: 0;
  padding: 48px 6% 18px 0;
}

.offering-group + .offering-group {
  padding-right: 0;
  padding-left: 6%;
  border-left: 1px solid rgba(16,46,34,.18);
}

.offering-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.offering-label svg {
  width: 18px;
}

.offering-group > h3 {
  max-width: 480px;
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.08;
}

.offering-summary {
  max-width: 520px;
  min-height: 48px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.offering-list {
  border-top: 1px solid rgba(16,46,34,.14);
}

.offering-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16,46,34,.14);
}

.offering-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.service-offering .offering-icon {
  color: white;
  background: var(--green-700);
}

.offering-icon svg {
  width: 18px;
}

.offering-item h4 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 17px;
}

.offering-item p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding-bottom: 7px;
  color: var(--green-950);
  border-bottom: 1px solid var(--green-950);
  font-size: 12px;
  font-weight: 700;
}

.offering-link svg {
  width: 16px;
}

.ai-section {
  padding: 95px max(5vw, calc((100vw - 1320px)/2));
  color: white;
  background: var(--green-950);
}

.ai-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 52px;
}

.ai-heading h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 600;
  line-height: 1;
}

.ai-heading-copy > p {
  max-width: 540px;
  margin: 15px 0 24px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.7;
}

.ai-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-status > span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,232,93,.12);
}

.ai-launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  gap: 9px;
  padding: 0 17px;
  color: var(--green-950);
  background: var(--lime);
  border: 0;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.ai-launch-button svg {
  width: 17px;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.ai-feature {
  position: relative;
  min-width: 0;
  padding: 35px 28px 32px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.ai-feature:first-child {
  padding-left: 0;
}

.ai-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.ai-feature > svg {
  width: 27px;
  height: 27px;
  margin: 35px 0 22px;
  color: var(--lime);
}

.ai-feature-number {
  position: absolute;
  top: 32px;
  right: 24px;
  color: rgba(255,255,255,.32);
  font-family: var(--display);
  font-size: 11px;
}

.ai-feature:last-child .ai-feature-number {
  right: 0;
}

.ai-feature h3 {
  min-height: 44px;
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.12;
}

.ai-feature p {
  min-height: 76px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.6;
}

.ai-feature-audience {
  color: var(--lime);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-demo-strip {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 20px 22px;
  color: var(--green-950);
  background: var(--lime);
}

.ai-demo-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: white;
  background: var(--green-950);
  border-radius: 50%;
  place-items: center;
}

.ai-demo-icon svg {
  width: 21px;
}

.ai-demo-strip > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.ai-demo-strip span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-demo-strip strong {
  font-family: var(--display);
  font-size: 18px;
}

.ai-example-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  color: white;
  background: var(--green-950);
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.ai-example-button svg {
  width: 15px;
}

.farmers-section {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 680px;
  background: var(--green-950);
}

.farmers-photo {
  position: relative;
  min-height: 620px;
  background-image: url("assets/images/farmer-feature.jpg");
  background-position: center;
  background-size: cover;
}

.photo-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  padding: 14px 16px;
  background: var(--lime);
}

.photo-note svg {
  width: 20px;
}

.photo-note div {
  display: grid;
}

.photo-note span {
  font-size: 9px;
  text-transform: uppercase;
}

.photo-note strong {
  font-size: 13px;
}

.farmers-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(5vw, 70px);
  color: white;
}

.section-kicker.light {
  color: var(--lime);
}

.farmers-copy > p {
  max-width: 510px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.7;
}

.farmer-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  max-width: 520px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}

.farmer-feature > span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 14px;
}

.farmer-feature strong {
  font-size: 14px;
}

.farmer-feature p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.5;
}

.light-link {
  width: fit-content;
  margin-top: 20px;
  color: var(--lime);
  border-color: rgba(201,232,93,.5);
}

.steps-section {
  background: var(--cream);
}

.section-heading.centered {
  display: grid;
  justify-content: center;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 60px auto 0;
}

.steps-grid article {
  position: relative;
  padding: 0 7%;
  text-align: center;
  border-right: 1px solid var(--line);
}

.steps-grid article:last-child {
  border: 0;
}

.step-number {
  position: absolute;
  top: 0;
  left: 10%;
  color: #a6ab9f;
  font-family: var(--display);
  font-size: 13px;
}

.step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.step-icon svg {
  width: 25px;
}

.steps-grid h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 22px;
}

.steps-grid p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.join-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 65px max(7vw, calc((100vw - 1220px)/2));
  background: var(--lime);
}

.join-section h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.join-section p {
  max-width: 590px;
  margin: 12px 0 0;
  color: rgba(16,46,34,.7);
}

.dark-button {
  flex: 0 0 auto;
  color: white;
  background: var(--green-950);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px 5vw;
  color: rgba(255,255,255,.65);
  background: #0a2118;
  font-size: 11px;
}

.footer-brand {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  color: white;
}

.copyright {
  text-align: right;
}

.overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  background: rgba(9,24,17,.55);
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  z-index: 51;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 94vw);
  height: 100vh;
  flex-direction: column;
  padding: 26px;
  background: var(--paper);
  box-shadow: -20px 0 55px rgba(11,31,21,.2);
  transform: translateX(105%);
  transition: transform .3s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-header h2 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 30px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 3px;
}

.cart-item h4 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 16px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-controls button {
  display: grid;
  width: 23px;
  height: 23px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}

.quantity-controls button svg {
  width: 12px;
}

.quantity-controls span {
  min-width: 13px;
  font-size: 11px;
  text-align: center;
}

.cart-line-price {
  font-size: 12px;
  font-weight: 700;
}

.cart-empty {
  display: grid;
  flex: 1;
  align-content: center;
  justify-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-empty > svg {
  width: 40px;
  height: 40px;
  color: var(--green-700);
}

.cart-empty h3 {
  margin: 15px 0 5px;
  color: var(--ink);
  font-family: var(--display);
}

.cart-empty p {
  margin: 0;
  font-size: 12px;
}

.cart-summary {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.cart-total {
  font-size: 18px;
}

.cart-summary p {
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: 10px;
}

.checkout-button {
  width: 100%;
  color: white;
  background: var(--green-950);
}

.toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  color: white;
  background: var(--green-950);
  box-shadow: var(--shadow);
  font-size: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: .25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  width: 16px;
  color: var(--lime);
}

.ai-fab {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--green-950);
  background: var(--lime);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(16,46,34,.28);
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.ai-fab:hover {
  transform: translateY(-3px);
}

.ai-fab svg {
  width: 22px;
}

.ai-assistant {
  position: fixed;
  z-index: 55;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(390px, calc(100vw - 32px));
  height: min(610px, calc(100vh - 48px));
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(16,46,34,.14);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(8,30,20,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}

.ai-assistant.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 14px 12px 17px;
  color: white;
  background: var(--green-950);
}

.ai-assistant-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ai-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.ai-avatar svg {
  width: 19px;
}

.ai-assistant-identity > div {
  display: grid;
  gap: 3px;
}

.ai-assistant-identity strong {
  font-family: var(--display);
  font-size: 17px;
}

.ai-assistant-identity div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
}

.ai-assistant-identity i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.ai-assistant-header .icon-button {
  color: white;
}

.ai-messages {
  flex: 1;
  padding: 18px 16px;
  overflow-y: auto;
}

.ai-message {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 15px;
}

.ai-message.user-message {
  justify-content: flex-end;
}

.message-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.message-avatar svg {
  width: 14px;
}

.ai-message > div {
  max-width: 82%;
}

.ai-message p {
  margin: 0;
  padding: 11px 13px;
  color: #394039;
  background: var(--green-100);
  border-radius: 2px 6px 6px 6px;
  font-size: 11px;
  line-height: 1.55;
  white-space: pre-line;
}

.user-message p {
  color: white;
  background: var(--green-700);
  border-radius: 6px 2px 6px 6px;
}

.message-time {
  display: block;
  margin-top: 4px;
  color: #969b94;
  font-size: 8px;
}

.user-message .message-time {
  text-align: right;
}

.typing-message p {
  display: flex;
  width: 48px;
  justify-content: center;
  gap: 4px;
}

.typing-message i {
  width: 5px;
  height: 5px;
  background: var(--green-700);
  border-radius: 50%;
  animation: aiTyping .8s infinite alternate;
}

.typing-message i:nth-child(2) {
  animation-delay: .16s;
}

.typing-message i:nth-child(3) {
  animation-delay: .32s;
}

@keyframes aiTyping {
  to {
    transform: translateY(-4px);
    opacity: .45;
  }
}

.ai-suggestions {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  scrollbar-width: none;
}

.ai-suggestions button {
  min-height: 30px;
  padding: 0 10px;
  white-space: nowrap;
  color: var(--green-700);
  background: transparent;
  border: 1px solid var(--green-100);
  border-radius: 15px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.ai-suggestions button:hover {
  background: var(--green-100);
}

.ai-form {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  padding: 12px 14px 5px;
  border-top: 1px solid var(--line);
}

.ai-form label {
  display: block;
}

.ai-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  outline: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 10px;
}

.ai-input:focus {
  border-color: var(--green-700);
}

.ai-form button {
  display: grid;
  width: 40px;
  height: 40px;
  color: white;
  background: var(--green-950);
  border: 0;
  border-radius: 3px;
  place-items: center;
  cursor: pointer;
}

.ai-form button svg {
  width: 17px;
}

.ai-disclaimer {
  margin: 0;
  padding: 3px 14px 10px;
  color: #969b94;
  font-size: 8px;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

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

  .workspace-tool {
    min-height: 150px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .workspace-tool > span:nth-child(2) {
    flex-basis: calc(100% - 58px);
  }

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

  .ai-feature:nth-child(2) {
    border-right: 0;
  }

  .ai-feature:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .ai-feature:nth-child(3) {
    padding-left: 0;
  }

  .farmers-section {
    grid-template-columns: 1fr 1fr;
  }

  .farmers-copy {
    padding: 60px 7vw;
  }

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

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

@media (max-width: 720px) {
  .announcement {
    justify-content: flex-start;
    min-height: 38px;
    padding-left: 5vw;
  }

  .site-header {
    min-height: 68px;
    padding: 0 4vw;
  }

  .brand {
    font-size: 18px;
  }

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

  .account-button,
  .search-toggle,
  .cart-label {
    display: none;
  }

  .cart-button {
    min-width: 52px;
  }

  .mobile-menu {
    top: 106px;
  }

  .hero {
    min-height: 680px;
    align-items: flex-start;
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7,29,19,.9), rgba(7,29,19,.32)), linear-gradient(0deg, rgba(7,29,19,.5), transparent 50%);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 82px 5vw 170px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-content > p {
    max-width: 430px;
    font-size: 15px;
  }

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

  .platform-strip {
    grid-template-columns: 1fr;
    padding: 8px 5vw;
  }

  .platform-strip article {
    justify-content: flex-start;
    min-height: 72px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16,46,34,.18);
  }

  .ai-workspace-section {
    padding: 74px 5vw;
  }

  .workspace-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .workspace-heading h2 {
    font-size: 48px;
  }

  .workspace-tools {
    grid-template-columns: 1fr;
  }

  .workspace-tool {
    min-height: 104px;
    flex-wrap: nowrap;
  }

  .workspace-tool > span:nth-child(2) {
    flex-basis: auto;
  }

  .workspace-console {
    min-height: 390px;
    padding: 20px;
  }

  .console-prompt {
    margin: 60px 0 50px;
  }

  .console-prompt h3 {
    font-size: 31px;
  }

  .console-signal-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .console-topline > span:first-child {
    max-width: 150px;
  }

  .hero-stat {
    right: auto;
    bottom: 24px;
    left: 5vw;
  }

  .market-section,
  .steps-section,
  .offerings-section,
  .ai-section {
    padding: 70px 5vw;
  }

  .offerings-intro,
  .offerings-columns {
    grid-template-columns: 1fr;
  }

  .offerings-intro {
    gap: 20px;
    padding-bottom: 35px;
  }

  .offering-group,
  .offering-group + .offering-group {
    padding: 38px 0 18px;
    border-left: 0;
  }

  .offering-group + .offering-group {
    border-top: 1px solid rgba(16,46,34,.18);
  }

  .offering-summary {
    min-height: 0;
  }

  .ai-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ai-features {
    grid-template-columns: 1fr;
  }

  .ai-feature,
  .ai-feature:first-child,
  .ai-feature:nth-child(3),
  .ai-feature:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .ai-feature:last-child {
    border-bottom: 0;
  }

  .ai-feature > svg {
    margin-top: 20px;
  }

  .ai-feature-number,
  .ai-feature:last-child .ai-feature-number {
    top: 30px;
    right: 0;
  }

  .ai-feature h3,
  .ai-feature p {
    min-height: 0;
  }

  .ai-demo-strip {
    grid-template-columns: 44px 1fr;
  }

  .ai-example-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .market-tools {
    width: 100%;
  }

  .search-field {
    width: 100%;
  }

  .product-grid {
    gap: 14px;
  }

  .product-info h3 {
    font-size: 18px;
  }

  .product-distance {
    display: none;
  }

  .market-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .farmers-section {
    grid-template-columns: 1fr;
  }

  .farmers-photo {
    min-height: 470px;
  }

  .farmers-copy {
    padding: 65px 5vw;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .steps-grid article {
    padding: 0 10%;
    border: 0;
  }

  .step-number {
    left: 15%;
  }

  .join-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 55px 5vw;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 49px;
  }

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

  .product-image {
    aspect-ratio: 1.25 / 1;
  }

  .filter-button span {
    display: none;
  }

  .photo-note {
    right: 16px;
    bottom: 16px;
  }

  .ai-fab {
    right: 16px;
    bottom: 16px;
  }

  .toast {
    right: 16px;
    bottom: 84px;
  }

  .ai-assistant {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: min(650px, calc(100vh - 16px));
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  top: 0;
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}

.legal-home-link svg {
  width: 16px;
}

.legal-hero {
  color: white;
  background: var(--green-950);
}

.legal-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 5vw 82px;
}

.legal-hero h1 {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  line-height: 1;
}

.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.legal-meta svg {
  width: 16px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
  padding: 75px 5vw 110px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.legal-toc span {
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-toc a {
  padding: 6px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.legal-toc a:hover {
  color: var(--green-700);
}

.legal-content section {
  position: relative;
  padding: 0 0 48px;
  scroll-margin-top: 110px;
}

.legal-content section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-number {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.legal-content h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #555c55;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content li {
  margin: 8px 0;
  padding-left: 6px;
}

.legal-content > section > p > a {
  color: var(--green-700);
  font-weight: 700;
  border-bottom: 1px solid var(--green-100);
}

.legal-callout {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-top: 28px;
  padding: 22px;
  background: var(--green-100);
  border-left: 3px solid var(--green-700);
}

.legal-callout > svg {
  width: 25px;
  color: var(--green-700);
}

.legal-callout strong {
  font-size: 13px;
}

.legal-callout p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.legal-contact {
  margin-top: 8px;
  padding: 38px !important;
  color: white;
  background: var(--green-950);
  border: 0 !important;
}

.legal-contact .legal-number,
.legal-contact a {
  color: var(--lime);
}

.legal-contact h2 {
  color: white;
}

.legal-contact > p {
  color: rgba(255,255,255,.7);
}

.legal-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.legal-contact a svg {
  width: 17px;
}

.legal-contact .contact-note {
  margin: 18px 0 0;
  padding-top: 15px;
  color: rgba(255,255,255,.48);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 10px;
}

.legal-footer {
  grid-template-columns: 1fr 1.3fr 1fr auto;
}

.footer-links [aria-current="page"] {
  color: var(--lime);
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 45px;
  }

  .legal-toc {
    position: static;
    display: block;
    padding: 0 0 20px;
    overflow-x: auto;
    white-space: nowrap;
    border: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .legal-toc span {
    display: block;
  }

  .legal-toc a {
    display: inline-block;
    margin-right: 20px;
  }

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

@media (max-width: 720px) {
  .legal-home-link {
    display: none;
  }

  .legal-hero-inner {
    padding: 72px 5vw 62px;
  }

  .legal-hero h1 {
    font-size: 49px;
  }

  .legal-layout {
    padding-bottom: 75px;
  }

  .legal-content section {
    padding-bottom: 38px;
  }

  .legal-content section + section {
    padding-top: 38px;
  }

  .legal-contact {
    padding: 28px !important;
  }

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

/* Contact and demo pages */
.form-page {
  background: var(--paper);
}

.header-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  padding: 0 15px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.header-demo-link:hover,
.header-demo-link.active {
  color: var(--green-950);
  background: var(--lime);
}

.header-demo-link svg {
  width: 15px;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: end;
  min-height: 550px;
  gap: 8vw;
  padding: 95px max(6vw, calc((100vw - 1240px)/2));
  color: var(--white);
  background: var(--green-950);
}

.form-hero h1 {
  max-width: 760px;
  margin: 18px 0 25px;
  font-family: var(--display);
  font-size: clamp(56px, 6.4vw, 90px);
  font-weight: 600;
  line-height: .93;
}

.form-hero h1 em {
  color: var(--lime);
  font-weight: inherit;
}

.form-hero > div:first-child > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.7;
}

.contact-route-list {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-route-list > a,
.contact-route {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 15px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-route-list > a {
  transition: padding .2s ease, background .2s ease;
}

.contact-route-list > a:hover {
  padding-left: 10px;
  background: rgba(255,255,255,.04);
}

.contact-route-list > a > span,
.contact-route > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--green-950);
  background: var(--lime);
  place-items: center;
}

.contact-route-list svg,
.contact-route svg {
  width: 17px;
}

.contact-route-list > a > div,
.contact-route > div {
  display: grid;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

.contact-route-list small,
.contact-route small {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-route-list strong,
.contact-route strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.contact-route-list > a > svg {
  color: var(--lime);
}

.demo-agenda {
  padding: 24px 28px 8px;
  background: #1b4933;
  border: 1px solid rgba(255,255,255,.15);
}

.demo-agenda > span {
  display: block;
  padding-bottom: 18px;
  color: var(--lime);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-agenda ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-agenda li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.demo-agenda li:last-child {
  border: 0;
}

.demo-agenda li > strong {
  color: var(--lime);
  font-size: 11px;
}

.demo-agenda li div {
  display: grid;
  gap: 6px;
}

.demo-agenda b {
  font-size: 14px;
}

.demo-agenda small {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.5;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 8vw;
  padding: 100px max(6vw, calc((100vw - 1240px)/2));
}

.form-intro {
  position: sticky;
  top: 105px;
}

.form-intro h2 {
  margin: 15px 0 18px;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 600;
  line-height: 1;
}

.form-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.platform-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.platform-form label {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.platform-form label > span,
.role-fieldset legend {
  color: var(--green-950);
  font-size: 11px;
  font-weight: 700;
}

.platform-form input,
.platform-form select,
.platform-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
}

.platform-form input,
.platform-form select {
  height: 50px;
  padding: 0 14px;
}

.platform-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.platform-form input:focus,
.platform-form select:focus,
.platform-form textarea:focus {
  background: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(45,105,71,.1);
}

.platform-form input::placeholder,
.platform-form textarea::placeholder {
  color: #92978f;
}

.full-field {
  grid-column: 1 / -1;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-submit-row p a {
  color: var(--green-700);
  text-decoration: underline;
}

.form-submit-row .dark-button {
  flex: 0 0 auto;
}

.form-submit-row button:disabled {
  cursor: default;
  opacity: .72;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  color: var(--green-950);
  background: var(--green-100);
  border-left: 3px solid var(--green-700);
}

.form-success[hidden] {
  display: none;
}

.form-success > svg {
  width: 22px;
  flex: 0 0 auto;
}

.form-success div {
  display: grid;
  gap: 4px;
}

.form-success p {
  margin: 0;
  color: var(--green-700);
  font-size: 11px;
  line-height: 1.5;
}

.demo-proof {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.demo-proof div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.demo-proof strong {
  color: var(--green-950);
  font-size: 17px;
}

.demo-proof span {
  color: var(--muted);
  font-size: 10px;
}

.role-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.role-fieldset legend {
  margin-bottom: 10px;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.role-options label {
  display: block;
  cursor: pointer;
}

.role-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.role-options label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  gap: 7px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 10px;
}

.role-options svg {
  width: 17px;
}

.role-options input:checked + span {
  color: var(--green-950);
  background: var(--green-100);
  border-color: var(--green-700);
}

.role-options input:focus-visible + span {
  outline: 3px solid rgba(45,105,71,.18);
}

@media (max-width: 920px) {
  .form-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 55px;
  }

  .contact-route-list,
  .demo-agenda {
    max-width: 620px;
  }

  .form-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .form-intro {
    position: static;
    max-width: 650px;
  }

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

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

@media (max-width: 720px) {
  .header-demo-link {
    display: none;
  }

  .form-hero {
    min-height: auto;
    padding: 74px 5vw;
  }

  .form-hero h1 {
    font-size: 50px;
  }

  .form-section {
    padding: 70px 5vw;
  }

  .platform-form {
    padding: 22px 18px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .dark-button {
    width: 100%;
  }

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

  .demo-proof {
    grid-template-columns: 1fr;
  }

  .demo-proof div {
    border-right: 0;
  }
}
