:root {
  --bg: #f4f0e7;
  --card: #ffffff;
  --ink: #092315;
  --muted: #4f6256;
  --line: #dfe5dd;
  --accent: #138142;
  --accent-dark: #07572d;
  --accent-soft: #e8f4eb;
  --warm: #e84d1f;
  --cream: #fffaf0;
  --shadow: 0 22px 70px rgba(19, 36, 25, 0.13);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(135deg, rgba(19, 129, 66, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f3ea 0%, #fffdf8 46%, #edf4ec 100%);
  color: var(--ink);
  margin: 0;
}

a {
  color: inherit;
}

.site-shell {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(19, 36, 25, 0.1);
  margin: clamp(12px, 2vw, 28px) auto;
  max-width: 1420px;
  overflow: hidden;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-block-end: 1px solid rgba(223, 229, 221, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(22px, 5vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.home-header {
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  border-radius: 8px;
  display: block;
  height: 36px;
  width: 36px;
}

.home-nav,
.site-nav,
.site-footer nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 34px;
}

.home-nav a,
.site-nav a,
.site-footer a {
  color: #12271a;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.home-nav a:hover,
.home-nav a:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  outline: none;
}

.chrome-button {
  align-items: center;
  background: linear-gradient(180deg, #18a151, #057333);
  border: 1px solid rgba(5, 115, 51, 0.24);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(5, 115, 51, 0.22);
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.chrome-button:hover,
.chrome-button:focus-visible {
  box-shadow: 0 18px 34px rgba(5, 115, 51, 0.3);
  outline: none;
  transform: translateY(-1px);
}

.chrome-button-large {
  font-size: 18px;
  min-height: 62px;
  min-width: min(100%, 300px);
}

.chrome-mark {
  background:
    radial-gradient(circle at 50% 50%, #2d7ff9 0 30%, #ffffff 31% 42%, transparent 43%),
    conic-gradient(#eb4335 0 33%, #fbbc05 0 66%, #34a853 0 100%);
  border-radius: 50%;
  display: block;
  height: 24px;
  width: 24px;
}

.home-page main {
  background: #ffffff;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  padding: clamp(54px, 7vw, 86px) clamp(22px, 5vw, 56px);
}

.hero-copy-panel {
  max-width: 610px;
}

.label-pill {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 20px;
  padding: 9px 15px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 72px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 span {
  color: #16824a;
  position: relative;
}

h1 span::after {
  background: #6aae62;
  border-radius: 999px;
  bottom: -7px;
  content: "";
  height: 5px;
  left: 2px;
  position: absolute;
  right: 2px;
}

.hero-copy {
  color: #2d3d32;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.56;
  margin: 28px 0 0;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-block-start: 32px;
}

.hero-actions p {
  color: #2d3d32;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  margin: 0;
  max-width: 150px;
}

.savings-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(19, 36, 25, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  margin-block-start: 34px;
  max-width: 560px;
  padding: 22px 24px;
}

.savings-card strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-block-end: 16px;
}

.savings-card dl {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.savings-card dt,
.save-badge span,
.extension-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.savings-card dd {
  color: var(--warm);
  font-size: 22px;
  font-weight: 950;
  margin: 4px 0 0;
}

.savings-card dl div:nth-child(2) dd {
  color: var(--accent-dark);
}

.save-badge {
  background: linear-gradient(135deg, #f3faf3, #e5f2e6);
  border-radius: 8px;
  min-width: 132px;
  padding: 18px;
}

.save-badge strong {
  color: var(--accent);
  font-size: 25px;
  margin: 4px 0 0;
}

.product-preview {
  min-width: 0;
}

.browser-window {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-top {
  align-items: center;
  background: #f2f4f1;
  border-block-end: 1px solid var(--line);
  display: flex;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
}

.browser-top span {
  border-radius: 50%;
  display: block;
  height: 11px;
  width: 11px;
}

.browser-top span:nth-child(1) {
  background: #ef4444;
}

.browser-top span:nth-child(2) {
  background: #f59e0b;
}

.browser-top span:nth-child(3) {
  background: #22c55e;
}

.browser-top p {
  background: #ffffff;
  border: 1px solid #e3e8e1;
  border-radius: 999px;
  color: #5a665e;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 0 8px;
  padding: 6px 14px;
}

.browser-body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 245, 0.94)),
    #ffffff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1fr);
  padding: 22px;
}

.delivery-card,
.extension-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 36, 25, 0.08);
  min-width: 0;
}

.delivery-card {
  padding: 22px;
}

.delivery-card h2 {
  font-size: 25px;
  line-height: 1.15;
  margin: 0;
}

.delivery-card p {
  color: #59685e;
  font-size: 14px;
  font-weight: 750;
  margin: 12px 0;
}

.delivery-card strong {
  color: var(--warm);
  display: block;
  font-size: 24px;
  font-weight: 950;
  margin-block-end: 18px;
}

.delivery-card img {
  aspect-ratio: 1 / 0.82;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.extension-card {
  padding: 18px;
}

.extension-head,
.extension-recipe,
.extension-metrics {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.extension-head span {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  gap: 8px;
}

.extension-head small {
  color: #536359;
  font-size: 20px;
  letter-spacing: 0;
}

.extension-recipe {
  border-block: 1px solid var(--line);
  gap: 16px;
  margin-block: 18px;
  padding-block: 18px;
}

.extension-recipe p {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.extension-recipe h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.22;
  margin: 0;
}

.extension-recipe img {
  aspect-ratio: 1 / 0.72;
  border-radius: 8px;
  display: block;
  flex: 0 0 116px;
  object-fit: cover;
  width: 116px;
}

.extension-metrics {
  border-block-end: 1px solid var(--line);
  gap: 18px;
  padding-block-end: 18px;
}

.extension-metrics > div {
  flex: 1;
}

.extension-metrics strong {
  color: var(--accent);
  display: block;
  font-size: 23px;
  font-weight: 950;
  margin-block-start: 5px;
}

.view-recipe-button {
  background: linear-gradient(180deg, #17a052, #057333);
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  margin-block: 18px;
  min-height: 44px;
  padding: 13px 18px;
  text-decoration: none;
}

.grocery-list strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  margin-block-end: 10px;
}

.grocery-list ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grocery-list li {
  color: #314237;
  font-size: 13px;
  font-weight: 750;
}

.grocery-list li::before {
  color: var(--accent);
  content: "\2713";
  font-weight: 950;
  margin-inline-end: 8px;
}

.workflow-section {
  padding: clamp(36px, 6vw, 72px) clamp(22px, 5vw, 56px) clamp(24px, 4vw, 46px);
}

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

.center-heading {
  margin: 0 auto;
  text-align: center;
}

.center-heading h2,
.workflow-section h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.08;
  margin: 0;
}

.workflow-cards {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  margin-block-start: 30px;
}

.workflow-card {
  appearance: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 36, 25, 0.06);
  color: var(--ink);
  cursor: pointer;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.workflow-card:hover,
.workflow-card:focus-visible,
.workflow-card.is-active {
  border-color: rgba(19, 129, 66, 0.36);
  box-shadow: 0 18px 44px rgba(19, 36, 25, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.step-number {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.workflow-card h3 {
  color: var(--ink);
  font-size: 18px;
  margin: 16px 0 0;
}

.workflow-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  margin: 10px 0 0;
  max-width: 260px;
}

.flow-arrow {
  align-self: center;
  color: var(--accent);
  font-size: 42px;
  font-weight: 400;
  justify-self: center;
}

.card-visual {
  bottom: 14px;
  position: absolute;
  right: 14px;
}

.mini-delivery {
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(19, 36, 25, 0.1);
  height: 82px;
  overflow: hidden;
  width: 130px;
}

.mini-delivery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mini-recipe {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(19, 36, 25, 0.1);
  display: grid;
  gap: 8px;
  padding: 14px;
  width: 96px;
}

.mini-recipe span {
  background: #e8f4eb;
  border-radius: 999px;
  display: block;
  height: 8px;
}

.mini-recipe span:first-child {
  background: var(--accent);
  width: 70%;
}

.mini-cart svg {
  fill: none;
  height: 88px;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  width: 98px;
}

.feature-strip {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(19, 36, 25, 0.06);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 clamp(22px, 5vw, 56px) clamp(42px, 6vw, 72px);
  overflow: hidden;
}

.feature-strip article {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  padding: 24px;
}

.feature-strip article + article {
  border-inline-start: 1px solid var(--line);
}

.feature-icon {
  align-items: center;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.feature-icon svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.feature-strip h3 {
  color: var(--ink);
  font-size: 16px;
  margin: 0;
}

.feature-strip p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin: 7px 0 0;
}

.site-footer {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-block-start: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 56px);
}

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

.footer-links a {
  font-size: 12px;
  font-weight: 850;
}

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

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

.policy-main {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(44px, 7vw, 78px) clamp(20px, 5vw, 64px);
}

.policy-hero {
  margin-block-end: 28px;
}

.policy-hero h1 {
  color: #132016;
  font-size: clamp(36px, 6vw, 64px);
}

.policy-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.policy-panel h2 {
  color: #132016;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 32px 0 0;
}

.policy-panel h2:first-child {
  margin-block-start: 0;
}

.policy-panel ul {
  color: var(--muted);
  line-height: 1.7;
  padding-inline-start: 22px;
}

.policy-panel li + li {
  margin-block-start: 8px;
}

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

.contact-list a {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    max-width: 760px;
  }

  .workflow-cards,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    display: none;
  }

  .feature-strip article + article {
    border-block-start: 1px solid var(--line);
    border-inline-start: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    border-radius: 0;
    margin: 0;
  }

  .site-header,
  .site-footer {
    display: block;
  }

  .home-nav {
    gap: 14px;
    margin-block: 16px;
  }

  .chrome-button {
    width: 100%;
  }

  .hero-layout {
    padding-block: 36px;
  }

  .browser-body,
  .savings-card {
    grid-template-columns: 1fr;
  }

  .save-badge {
    min-width: 0;
  }

  .extension-recipe {
    align-items: flex-start;
  }

  .extension-recipe img {
    flex-basis: 90px;
    width: 90px;
  }

  .card-visual {
    opacity: 0.34;
  }
}
