@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Lora:wght@700&display=swap");

:root {
  --zuno-cream: #f7f1e7;
  --zuno-cream-2: #fbf7ee;
  --zuno-paper: #fffaf0;
  --zuno-white: #fffdf8;
  --zuno-green: #113f2b;
  --zuno-green-2: #1f5a32;
  --zuno-green-3: #2e6b42;
  --zuno-gold: #dca943;
  --zuno-gold-2: #f0bd55;
  --zuno-ink: #18221a;
  --zuno-muted: #62685f;
  --zuno-border: rgba(43, 61, 42, 0.16);
  --zuno-shadow: 0 24px 70px rgba(60, 48, 30, 0.12);
  --zuno-shadow-soft: 0 14px 36px rgba(60, 48, 30, 0.08);
  --zuno-radius: 18px;
  --zuno-radius-sm: 11px;
  --zuno-container: 1180px;
  --zuno-display: "Lora", Georgia, "Times New Roman", serif;
  --zuno-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 3%, rgba(255, 255, 255, 0.9), transparent 25rem),
    linear-gradient(180deg, var(--zuno-cream-2), var(--zuno-cream));
  color: var(--zuno-ink);
  font-family: var(--zuno-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(220, 169, 67, 0.3);
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(220, 169, 67, 0.7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--zuno-green);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 40px), var(--zuno-container));
  margin-inline: auto;
}

.marketing-carousel {
  position: relative;
  z-index: 101;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0, rgba(240, 189, 85, 0.18), transparent 20rem),
    linear-gradient(110deg, #0c3524, var(--zuno-green-2));
  color: #fff;
}

.marketing-carousel-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.marketing-carousel-track {
  display: flex;
  width: max-content;
  animation: marketing-ticker 34s linear infinite;
  will-change: transform;
}

.marketing-carousel-group {
  display: flex;
  min-height: 46px;
  margin: 0;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.35;
  white-space: nowrap;
}

.marketing-carousel-group > span,
.marketing-carousel-group > a {
  display: inline-flex;
  align-items: center;
}

.marketing-carousel-group > span::after,
.marketing-carousel-group > a::after {
  width: 6px;
  height: 6px;
  margin-inline: clamp(30px, 4vw, 64px);
  border-radius: 50%;
  background: var(--zuno-gold-2);
  box-shadow: 0 0 0 4px rgba(240, 189, 85, 0.12);
  content: "";
}

.marketing-carousel-link {
  color: var(--zuno-gold-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.marketing-carousel-link:hover {
  color: #fff;
}

.marketing-carousel:hover .marketing-carousel-track,
.marketing-carousel:focus-within .marketing-carousel-track {
  animation-play-state: paused;
}

@keyframes marketing-ticker {
  to {
    transform: translateX(-50%);
  }
}

[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--zuno-border);
  box-shadow: 0 10px 30px rgba(60, 48, 30, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 82px;
}

.brand {
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.nav-links,
.nav-actions,
.button-row,
.trust-row,
.tag-row,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-dropdown {
  position: relative;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 9px;
  color: var(--zuno-ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(17, 63, 43, 0.08);
  color: var(--zuno-green);
}

.nav-dropdown-trigger {
  display: flex;
  gap: 7px;
  align-items: center;
}

.nav-dropdown-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 110;
  display: grid;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--zuno-border);
  border-radius: 14px;
  background: var(--zuno-white);
  box-shadow: var(--zuno-shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 11px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-label {
  padding: 6px 11px 4px;
  color: var(--zuno-muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links .nav-dropdown-menu a {
  padding: 9px 11px;
}

.nav-actions {
  justify-content: flex-end;
  gap: 12px;
}

.nav-login {
  color: var(--zuno-ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--zuno-border);
  border-radius: 10px;
  background: var(--zuno-white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--zuno-green);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--zuno-border);
  border-radius: 11px;
  background: var(--zuno-white);
  color: var(--zuno-green);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(60, 48, 30, 0.1);
}

.button-primary {
  border-color: var(--zuno-green);
  background: linear-gradient(135deg, var(--zuno-green), var(--zuno-green-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 63, 43, 0.2);
}

.button-gold {
  border-color: var(--zuno-gold);
  background: linear-gradient(135deg, var(--zuno-gold), var(--zuno-gold-2));
  color: #103521;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.84rem;
}

.button-row {
  gap: 14px;
}

.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.section-tight {
  padding-block: clamp(42px, 6vw, 72px);
}

.section-paper {
  border-block: 1px solid rgba(43, 61, 42, 0.08);
  background: rgba(255, 253, 248, 0.7);
}

.section-green {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 25rem),
    linear-gradient(135deg, #0d3927, #164d30);
  color: #fff;
}

.section-gold {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.3), transparent 22rem),
    linear-gradient(135deg, #ead5a4, #f4e8ce);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #98602f;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-green .eyebrow {
  color: var(--zuno-gold-2);
}

.section-green .section-intro {
  color: #fff;
}

.section-green .lede,
.section-green .tag {
  color: #fff;
}

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

h1,
h2,
h3 {
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7.5vw, 6rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.12;
}

h4 {
  margin-bottom: 8px;
  color: var(--zuno-ink);
  font-size: 1rem;
  font-weight: 900;
}

:where(.section-green) h1,
:where(.section-green) h2,
:where(.section-green) h3,
:where(.section-green) p {
  color: #fff;
}

.lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--zuno-ink);
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.75;
}

.muted {
  color: var(--zuno-muted);
}

.center {
  text-align: center;
}

.center .lede,
.center .section-intro {
  margin-inline: auto;
}

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

.section-heading.center {
  margin-inline: auto;
}

.section-intro {
  max-width: 670px;
  color: var(--zuno-muted);
  font-size: 1.04rem;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  top: 8%;
  right: -11vw;
  width: min(54vw, 760px);
  height: 84%;
  border-radius: 48px 0 0 48px;
  background:
    radial-gradient(circle at 70% 24%, rgba(102, 121, 69, 0.32), transparent 18%),
    radial-gradient(circle at 45% 70%, rgba(220, 169, 67, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(225, 213, 186, 0.78), rgba(247, 241, 231, 0.16));
  content: "";
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hero-grid > *,
.page-hero-grid > *,
.split > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.metrics > *,
.steps > * {
  min-width: 0;
}

.hero-grid {
  min-height: 690px;
  padding-block: 56px 82px;
}

.hero-copy {
  display: grid;
  justify-items: start;
}

@media (min-width: 1041px) {
  .hero-copy h1 {
    font-size: clamp(3.4rem, 5.5vw, 4.75rem);
  }
}

.trust-row {
  gap: 22px;
  margin-top: 28px;
}

.trust-item {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--zuno-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-item::before {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1.5px solid var(--zuno-green);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 0 47%, var(--zuno-green) 48% 56%, transparent 57%) 7px 11px / 8px 5px no-repeat,
    linear-gradient(45deg, transparent 0 43%, var(--zuno-green) 44% 55%, transparent 56%) 5px 12px / 6px 4px no-repeat;
  content: "";
  flex: 0 0 auto;
}

.phone-scene {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.phone-scene::before,
.phone-scene::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.phone-scene::before {
  right: 2%;
  bottom: 5%;
  width: 230px;
  height: 230px;
  background: linear-gradient(145deg, #b7c7a0, #758b55);
  filter: blur(0.2px);
}

.phone-scene::after {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 28px solid rgba(220, 169, 67, 0.5);
}

.phone {
  position: relative;
  z-index: 2;
  width: 304px;
  min-height: 568px;
  padding: 1px 1px 10px;
  border: 8px solid #151713;
  border-radius: 46px;
  background: #f8f3e9;
  box-shadow: 0 30px 70px rgba(34, 28, 18, 0.34);
}

.phone::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 112px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #151713;
  content: "";
}

.phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.price {
  color: #1f7a3b;
  font-size: 1.55rem;
  font-weight: 900;
}

.old-price {
  color: #97958e;
  font-size: 0.78rem;
  text-decoration: line-through;
}

.drop {
  padding: 3px 7px;
  border-radius: 999px;
  background: #dff0d5;
  color: #2c7e34;
  font-size: 0.67rem;
  font-weight: 900;
}

.page-hero {
  padding-block: clamp(70px, 9vw, 118px);
  overflow: hidden;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.hero-panel,
.card,
.metric,
.feature-card,
.quote-card,
.form-card,
.pricing-card,
.legal-card {
  border: 1px solid var(--zuno-border);
  border-radius: var(--zuno-radius);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.98), transparent 42%),
    var(--zuno-white);
  box-shadow: var(--zuno-shadow-soft);
}

.hero-panel {
  position: relative;
  min-height: 350px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
}

.hero-panel::after {
  position: absolute;
  right: -48px;
  bottom: -54px;
  width: 210px;
  height: 210px;
  border: 44px solid rgba(220, 169, 67, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-icon,
.icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--zuno-green-3), var(--zuno-green));
  color: #fff;
  font-weight: 900;
}

.hero-panel-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  font-size: 2rem;
}

.icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.grid-2,
.grid-3,
.grid-4,
.metrics,
.steps {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.feature-card,
.quote-card,
.pricing-card {
  padding: 30px;
}

.card p,
.feature-card p,
.quote-card p,
.pricing-card p {
  margin-bottom: 0;
  color: var(--zuno-muted);
}

.section-green .card h3,
.section-green .card p {
  color: var(--zuno-ink);
}

.feature-card {
  min-height: 100%;
}

.feature-card .tag {
  margin-bottom: 18px;
}

.metric {
  padding: 26px;
}

.metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
}

.metric span {
  color: var(--zuno-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-right: 20px;
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--zuno-green);
  box-shadow: 0 16px 32px rgba(17, 63, 43, 0.18);
  color: #fff;
  content: counter(step);
  font-family: var(--zuno-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 8%;
  width: 48px;
  height: 2px;
  background: var(--zuno-gold);
  content: "";
}

.step:not(:last-child) h3::before {
  position: absolute;
  top: 21px;
  right: calc(8% - 1px);
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid var(--zuno-gold);
  border-right: 2px solid var(--zuno-gold);
  content: "";
}

.step p {
  color: var(--zuno-muted);
}

.retailer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}

.retailer-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(31, 90, 50, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--zuno-green);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.retailer-chip-check {
  color: var(--zuno-green-2);
  font-size: 1rem;
  font-weight: 900;
}

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
}

.visual-board {
  position: relative;
  min-height: 450px;
  padding: 32px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(145deg, #cfddc5, #dfc895);
  box-shadow: var(--zuno-shadow);
}

.visual-board .mini-card {
  position: absolute;
  width: min(74%, 330px);
  padding: 22px;
  border: 1px solid rgba(43, 61, 42, 0.13);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--zuno-shadow-soft);
}

.visual-board .mini-card:first-child {
  top: 48px;
  left: 34px;
  transform: rotate(-3deg);
}

.visual-board .mini-card:last-child {
  right: 30px;
  bottom: 42px;
  transform: rotate(4deg);
}

.app-preview {
  position: relative;
  min-height: 460px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(43, 61, 42, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 189, 85, 0.3), transparent 29%),
    linear-gradient(145deg, #e4eadc, #f3e3bd);
  box-shadow: var(--zuno-shadow);
}

.app-preview-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(43, 61, 42, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 22px 52px rgba(40, 53, 38, 0.16);
}

.app-preview-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--zuno-border);
  background: rgba(247, 241, 231, 0.82);
}

.app-preview-bar strong {
  color: var(--zuno-green);
  font-size: 0.9rem;
}

.app-preview-dots {
  display: flex;
  gap: 6px;
}

.app-preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 63, 43, 0.25);
}

.app-preview-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.app-product-card,
.app-list-row,
.app-chat-bubble,
.app-planner-slot {
  border: 1px solid var(--zuno-border);
  background: #fff;
}

.app-product-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
}

.app-product-thumb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 12px;
  background: var(--zuno-cream);
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-weight: 800;
}

.app-product-copy strong,
.app-product-copy span {
  display: block;
}

.app-product-copy span {
  margin-top: 3px;
  color: var(--zuno-muted);
  font-size: 0.78rem;
}

.app-price {
  color: var(--zuno-green);
  font-size: 1.05rem;
  font-weight: 900;
}

.app-list-row,
.app-planner-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 13px;
}

.app-list-row span,
.app-planner-slot span {
  color: var(--zuno-muted);
  font-size: 0.8rem;
}

.app-check {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(31, 90, 50, 0.28);
  border-radius: 50%;
  color: var(--zuno-green);
  font-size: 0.82rem;
  font-weight: 900;
}

.app-chat-bubble {
  max-width: 84%;
  padding: 13px 16px;
  border-radius: 16px 16px 16px 4px;
  color: var(--zuno-muted);
  font-size: 0.88rem;
}

.app-chat-bubble.user {
  justify-self: end;
  border-color: rgba(17, 63, 43, 0.18);
  border-radius: 16px 16px 4px;
  background: var(--zuno-green);
  color: #fff;
}

.app-preview-body.is-chat-demo-resetting {
  opacity: 0;
  transition: opacity 180ms ease;
}

.app-preview-body.is-chat-demo-resetting > * {
  pointer-events: none;
}

.app-chat-demo-enter {
  animation: app-chat-demo-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-chat-typing {
  display: flex;
  width: max-content;
  min-width: 58px;
  align-items: center;
  gap: 5px;
  padding: 15px 17px;
}

.app-chat-typing[hidden] {
  display: none;
}

.app-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(74, 82, 70, 0.55);
  animation: app-chat-typing 900ms ease-in-out infinite;
}

.app-chat-typing span:nth-child(2) {
  animation-delay: 140ms;
}

.app-chat-typing span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes app-chat-demo-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes app-chat-typing {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.app-planner-day {
  color: var(--zuno-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-link-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.feature-link-card .plain-link {
  margin-top: auto;
  padding-top: 18px;
}

.chart {
  position: relative;
  height: 110px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(153deg, transparent 0 16%, rgba(31, 90, 50, 0.32) 17% 18%, transparent 19%),
    linear-gradient(165deg, transparent 0 35%, rgba(31, 90, 50, 0.4) 36% 38%, transparent 39%),
    linear-gradient(145deg, transparent 0 60%, rgba(31, 90, 50, 0.45) 61% 63%, transparent 64%),
    #f7f1e7;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--zuno-ink);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(17, 63, 43, 0.1);
  content: "";
  box-shadow: inset 0 0 0 1px rgba(17, 63, 43, 0.1);
}

.check-list li::after {
  position: absolute;
  top: 11.5px;
  left: 11.5px;
  width: 8px;
  height: 5px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 2px solid var(--zuno-green);
  border-left: 2px solid var(--zuno-green);
  content: "";
}

.tag-row {
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  border: 1px solid rgba(220, 169, 67, 0.34);
  border-radius: 999px;
  background: rgba(220, 169, 67, 0.12);
  color: #754e1e;
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.2;
}

.quote-card blockquote {
  margin: 0 0 24px;
  color: var(--zuno-ink);
  font-size: 1rem;
  font-weight: 650;
}

.quote-card blockquote::before {
  display: block;
  height: 30px;
  color: var(--zuno-gold);
  content: "“";
  font-family: var(--zuno-display);
  font-size: 3.8rem;
  line-height: 1;
}

.quote-card cite {
  color: var(--zuno-muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--zuno-border);
  border-radius: 14px;
  background: var(--zuno-white);
  box-shadow: 0 8px 24px rgba(60, 48, 30, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--zuno-ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 16px;
  right: 19px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 63, 43, 0.08);
  color: var(--zuno-green);
  content: "+";
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--zuno-muted);
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
}

.pricing-card.featured {
  border-color: rgba(17, 63, 43, 0.4);
  box-shadow: var(--zuno-shadow);
}

.pricing-card .amount {
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card .amount small {
  color: var(--zuno-muted);
  font-family: var(--zuno-sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-card {
  padding: clamp(24px, 4vw, 40px);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--zuno-ink);
  font-size: 0.8rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--zuno-border);
  border-radius: 10px;
  background: #fff;
  color: var(--zuno-ink);
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 63, 43, 0.45);
  box-shadow: 0 0 0 4px rgba(17, 63, 43, 0.09);
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 750;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(31, 122, 59, 0.1);
  color: #16602d;
}

.form-status.error {
  background: rgba(180, 35, 24, 0.09);
  color: #8d241c;
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 60px);
}

.legal-card h2 {
  margin-top: 1.25em;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.legal-card h3 {
  margin-top: 1.3em;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: #424a42;
}

.legal-card a {
  color: var(--zuno-green);
  font-weight: 800;
}

.notice {
  padding: 17px 18px;
  border-left: 4px solid var(--zuno-gold);
  border-radius: 8px;
  background: rgba(220, 169, 67, 0.1);
  color: #68491e;
  font-size: 0.9rem;
  font-weight: 700;
}

.note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(43, 61, 42, 0.13);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--zuno-muted);
  font-size: 0.9rem;
}

.note strong {
  color: var(--zuno-ink);
}

.content-block {
  max-width: 760px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--zuno-border);
  border-radius: var(--zuno-radius);
  background: var(--zuno-white);
  box-shadow: var(--zuno-shadow-soft);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--zuno-border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(17, 63, 43, 0.06);
  color: var(--zuno-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--zuno-muted);
  font-size: 0.92rem;
}

.comparison-table td:first-child {
  color: var(--zuno-ink);
  font-weight: 800;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.plan-name {
  display: block;
  margin-bottom: 7px;
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.plan-price {
  margin-bottom: 18px;
  color: var(--zuno-green);
  font-size: 1.05rem;
  font-weight: 900;
}

.plan-price strong {
  font-family: var(--zuno-display);
  font-size: 2.7rem;
}

.plain-link {
  color: var(--zuno-green);
  font-weight: 800;
  text-underline-offset: 3px;
}

.plan-link {
  color: #000;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.plan-link:hover,
.plan-link:focus-visible {
  color: #000;
  text-decoration: underline;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(36px, 6vw, 64px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 44%, rgba(255, 255, 255, 0.09), transparent 23rem),
    linear-gradient(135deg, #0e3b28, #0a4a2d 58%, #12361e);
  box-shadow: var(--zuno-shadow);
}

.cta h2,
.cta p {
  color: #fff;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  max-width: 640px;
  margin-bottom: 0;
  opacity: 0.84;
}

.site-footer {
  padding-block: 74px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(120px, 0.75fr));
  gap: clamp(30px, 5vw, 70px);
}

.footer-brand p {
  max-width: 330px;
  color: var(--zuno-muted);
  font-size: 0.9rem;
}

.footer-heading {
  margin: 8px 0 17px;
  color: var(--zuno-ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--zuno-muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--zuno-green);
}

.footer-social {
  gap: 9px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--zuno-border);
  border-radius: 50%;
  color: var(--zuno-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--zuno-border);
  color: var(--zuno-muted);
  font-size: 0.78rem;
}

.footer-bottom a {
  font-weight: 750;
  text-decoration: none;
}

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

  .nav-toggle {
    position: relative;
    z-index: 104;
    display: block;
    justify-self: end;
  }

  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: var(--mobile-nav-toggle-top, 18px);
    right: 20px;
    z-index: 120;
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    right: 20px;
    left: 20px;
    display: none;
    border: 1px solid var(--zuno-border);
    background: var(--zuno-white);
  }

  .nav-links {
    top: var(--mobile-nav-top, 82px);
    z-index: 102;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: flex-start;
    max-height: calc(100vh - 190px);
    padding: 16px;
    border-radius: 16px 16px 0 0;
    box-shadow: var(--zuno-shadow);
    overflow-y: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-chevron {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: auto;
    margin: 0 8px 5px;
    padding: 3px 7px 7px 16px;
    border: 0;
    border-left: 2px solid rgba(17, 63, 43, 0.15);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown.is-expanded .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown.is-expanded .nav-dropdown-chevron {
    transform: translateY(2px) rotate(225deg);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-label {
    padding: 5px 11px 2px;
  }

  .nav-links .nav-dropdown-menu a {
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .nav-actions {
    top: min(476px, calc(100vh - 104px));
    z-index: 103;
    padding: 14px 16px 18px;
    border-top: 0;
    border-radius: 0 0 16px 16px;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    display: flex;
  }

  .nav-actions.is-open {
    position: fixed;
    top: auto;
    bottom: 20px;
  }

  .hero-grid,
  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.62fr);
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    gap: 30px;
    padding-block: 52px 60px;
  }

  .hero::after {
    top: 45%;
    width: 78vw;
    height: 54%;
  }

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

  .phone-scene {
    width: 100%;
    min-height: 0;
    padding-block: 18px 28px;
  }

  .phone {
    width: min(260px, calc(100vw - 72px));
    min-height: 0;
  }

  .phone-scene::before {
    right: max(8%, calc(50% - 230px));
    bottom: 0;
    width: clamp(150px, 25vw, 210px);
    height: clamp(150px, 25vw, 210px);
  }

  .phone-scene::after {
    top: 4%;
    left: max(8%, calc(50% - 225px));
    width: clamp(82px, 13vw, 112px);
    height: clamp(82px, 13vw, 112px);
    border-width: clamp(18px, 3vw, 26px);
  }

  .page-hero-grid {
    gap: 34px;
  }

  .hero-panel {
    min-height: 280px;
  }

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

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

@media (max-width: 760px) {
  .marketing-carousel-group {
    min-height: 44px;
    font-size: 0.74rem;
  }

  .marketing-carousel-track {
    animation-duration: 28s;
  }

  .shell {
    width: min(calc(100% - 28px), var(--zuno-container));
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    top: var(--mobile-nav-top, 72px);
  }

  .brand {
    font-size: 2rem;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
  }

  .section {
    padding-block: 68px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .hero-copy .lede {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy .trust-row {
    gap: 12px 18px;
    margin-top: 20px;
  }

  .phone-scene {
    height: 350px;
    min-height: 0;
    padding-top: 10px;
    overflow: hidden;
    align-items: start;
  }

  .phone {
    width: min(220px, calc(100vw - 72px));
  }

  .hero::after {
    top: 52%;
    right: -24vw;
    width: 112vw;
    height: 48%;
    border-radius: 34px 0 0 34px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .metrics,
  .steps {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after,
  .step:not(:last-child) h3::before {
    display: none;
  }

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

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

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

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

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

  .visual-board {
    min-height: 390px;
    padding: 22px;
  }

  .app-preview {
    min-height: 390px;
    padding: 18px;
  }

  .app-product-card {
    grid-template-columns: 52px 1fr;
  }

  .app-product-thumb {
    width: 52px;
    height: 52px;
  }

  .app-price {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-chat-demo-enter,
  .app-chat-typing span {
    animation: none;
  }

  .app-preview-body.is-chat-demo-resetting {
    opacity: 1;
    transition: none;
  }
}

/* Watchlist and Pantry feature pages */
.feature-marketing-hero {
  position: relative;
  background:
    radial-gradient(circle at 7% 12%, rgba(255, 255, 255, 0.86), transparent 24rem),
    linear-gradient(145deg, #fbf7ee 0%, #f4ead7 58%, #e8d7ae 100%);
}

.feature-marketing-hero::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 92px solid rgba(17, 63, 43, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.feature-marketing-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
}

.feature-marketing-hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 6vw, 5.3rem);
}

.feature-storyboard {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-top: 86px;
}

.feature-storyboard__glow {
  position: absolute;
  inset: 6% -4% 0 8%;
  border-radius: 44% 56% 50% 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(240, 189, 85, 0.72), transparent 32%),
    linear-gradient(145deg, #b5c7a8, #64825f);
  filter: saturate(0.82);
  opacity: 0.78;
}

.app-preview--feature {
  width: 92%;
  min-height: 0;
  margin-left: auto;
  padding: 22px;
  transform: rotate(1.6deg);
  background: rgba(247, 241, 231, 0.48);
  box-shadow: 0 28px 70px rgba(34, 44, 29, 0.23);
}

.alert-preview,
.pantry-summary-card {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: -8px;
  width: min(86%, 390px);
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 20px 50px rgba(31, 49, 32, 0.2);
  backdrop-filter: blur(16px);
}

.alert-preview::before {
  float: left;
  display: grid;
  width: 40px;
  height: 40px;
  margin: 1px 13px 9px 0;
  place-items: center;
  border-radius: 11px;
  background: var(--zuno-green);
  color: var(--zuno-gold-2);
  content: "Z";
  font-family: var(--zuno-display);
  font-weight: 900;
}

.alert-preview span,
.alert-preview strong,
.pantry-summary-card span,
.pantry-summary-card strong {
  display: block;
}

.alert-preview__app,
.pantry-summary-card__label {
  color: var(--zuno-muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.alert-preview strong {
  color: var(--zuno-green);
  line-height: 1.35;
}

.alert-preview > span:last-child,
.pantry-summary-card > span:last-child {
  margin-top: 3px;
  color: var(--zuno-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.app-product-card--sale {
  border-color: rgba(52, 133, 72, 0.26);
  background: linear-gradient(135deg, #fff, #f3faef);
  box-shadow: 0 10px 26px rgba(44, 126, 52, 0.08);
}

.app-product-copy .sale-label {
  color: #2c7e34;
  font-weight: 900;
}

.price-change {
  text-align: right;
}

.price-change strong,
.price-change span,
.price-change small {
  display: block;
}

.price-change strong {
  color: #237637;
  font-size: 1.13rem;
}

.price-change__was {
  color: #868b83;
  font-size: 0.72rem;
  text-decoration: line-through;
}

.price-change small {
  color: #237637;
  font-size: 0.67rem;
  font-weight: 900;
}

.watchlist-preview-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--zuno-green);
  color: #fff;
  font-size: 0.75rem;
}

.watchlist-preview-action strong {
  color: var(--zuno-gold-2);
}

.feature-steps .step-number {
  display: none;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.9);
}

.check-list--light li::before {
  background: var(--zuno-gold-2);
  color: var(--zuno-green);
}

.note--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.weekly-update-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
  color: var(--zuno-ink);
  transform: rotate(1.5deg);
}

.weekly-update-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  color: #98602f;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.weekly-update-card h3 {
  color: var(--zuno-green);
  font-size: clamp(2rem, 4vw, 3rem);
}

.weekly-update-card > p {
  color: var(--zuno-muted);
}

.weekly-update-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--zuno-border);
}

.weekly-update-item div:last-child {
  text-align: right;
}

.weekly-update-item strong,
.weekly-update-item span {
  display: block;
}

.weekly-update-item span {
  color: var(--zuno-muted);
  font-size: 0.75rem;
}

.weekly-update-item div:last-child strong {
  color: #237637;
  font-size: 1.16rem;
}

.weekly-update-card__button {
  display: block;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--zuno-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.list-role {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17, 63, 43, 0.1);
  color: var(--zuno-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pantry-storyboard {
  padding-top: 72px;
}

.pantry-storyboard .feature-storyboard__glow {
  background:
    radial-gradient(circle at 66% 22%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(145deg, #d7bc7c, #8aa076);
}

.pantry-summary-card {
  top: 8px;
  right: -4px;
  left: auto;
  width: 230px;
}

.pantry-summary-card strong {
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: 1.3rem;
}

.pantry-preview {
  width: 94%;
  margin-right: auto;
  margin-left: 0;
  transform: rotate(-1.4deg);
}

.pantry-tabs {
  display: flex;
  gap: 8px;
  padding: 13px 17px 0;
}

.pantry-tabs span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--zuno-muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.pantry-tabs .is-active {
  background: var(--zuno-green);
  color: #fff;
}

.status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill--ok {
  background: #e2f2df;
  color: #26703a;
}

.status-pill--low {
  background: #fff0d2;
  color: #9a5c17;
}

.status-pill--date {
  background: #f0e9dc;
  color: #6e5c42;
}

.app-product-card--low {
  border-color: rgba(220, 169, 67, 0.42);
  background: #fffaf0;
}

.pantry-cycle {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.pantry-cycle article {
  min-height: 250px;
  padding: 26px 22px;
  border: 1px solid var(--zuno-border);
  border-radius: var(--zuno-radius);
  background: var(--zuno-white);
  box-shadow: var(--zuno-shadow-soft);
}

.pantry-cycle article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--zuno-green);
  color: #fff;
  font-family: var(--zuno-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.pantry-cycle article p {
  color: var(--zuno-muted);
  font-size: 0.9rem;
}

.pantry-cycle__arrow {
  color: var(--zuno-gold);
  font-size: 1.8rem;
  font-weight: 900;
}

.pantry-shelves {
  display: grid;
  gap: 13px;
  padding: clamp(23px, 4vw, 38px);
  border: 10px solid #b78c50;
  border-radius: 22px;
  background:
    repeating-linear-gradient(180deg, transparent 0 129px, #b78c50 130px 140px),
    #e8d4a7;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
  transform: rotate(-1.2deg);
}

.pantry-shelf {
  display: grid;
  grid-template-columns: minmax(70px, 0.65fr) repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
  min-height: 116px;
}

.pantry-shelf > span {
  align-self: center;
  color: #6d4c25;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pantry-shelf > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(82, 58, 24, 0.13);
  border-radius: 12px 12px 5px 5px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--zuno-green);
  box-shadow: 0 8px 18px rgba(87, 61, 25, 0.1);
}

.pantry-shelf > div small {
  margin-top: 3px;
  color: var(--zuno-muted);
}

.pantry-shelf > div.is-low {
  border-color: rgba(196, 118, 25, 0.36);
  background: #fff2d9;
}

.ai-pantry-chat {
  max-width: 500px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--zuno-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(240, 189, 85, 0.24), transparent 15rem),
    #fffdf8;
  box-shadow: var(--zuno-shadow);
}

.ai-pantry-chat__title {
  display: block;
  margin-bottom: 24px;
  color: var(--zuno-green);
  font-family: var(--zuno-display);
  font-size: 1.45rem;
  font-weight: 900;
}

.chat-bubble {
  max-width: 88%;
  margin-bottom: 13px;
  padding: 14px 17px;
  border-radius: 17px;
  font-size: 0.86rem;
}

.chat-bubble--user {
  margin-left: auto;
  border-radius: 17px 17px 4px;
  background: var(--zuno-green);
  color: #fff;
}

.chat-bubble--zuno {
  border: 1px solid var(--zuno-border);
  border-radius: 17px 17px 17px 4px;
  background: #fff;
  color: var(--zuno-muted);
}

.chat-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chat-chip-row span {
  padding: 7px 11px;
  border: 1px solid rgba(17, 63, 43, 0.2);
  border-radius: 999px;
  color: var(--zuno-green);
  font-size: 0.72rem;
  font-weight: 900;
}

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

  .feature-storyboard {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .feature-marketing-hero h1 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .feature-storyboard {
    min-height: 540px;
  }

  .app-preview--feature {
    width: 100%;
    padding: 13px;
    transform: none;
  }

  .alert-preview {
    left: 6px;
  }

  .pantry-summary-card {
    right: 8px;
  }

  .price-change {
    grid-column: 2;
    text-align: left;
  }

  .watchlist-preview-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .pantry-cycle {
    grid-template-columns: 1fr;
  }

  .pantry-cycle article {
    min-height: 0;
  }

  .pantry-cycle article > span {
    margin-bottom: 22px;
  }

  .pantry-cycle__arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .pantry-shelf {
    grid-template-columns: 1fr 1fr;
  }

  .pantry-shelf > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .feature-storyboard {
    min-height: 510px;
    padding-top: 96px;
  }

  .alert-preview {
    width: calc(100% - 12px);
  }

  .pantry-summary-card {
    width: 210px;
  }

  .app-preview--feature .app-preview-body {
    padding: 12px;
  }

  .weekly-update-card {
    transform: none;
  }

  .pantry-shelves {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .phone-scene.product-showcase-scene {
    width: min(100%, 410px);
    height: 585px;
    min-height: 585px;
    margin-left: auto;
    overflow: visible;
  }

  .phone.product-showcase-phone {
    width: min(306px, calc(100vw - 38px));
    height: 526px;
    min-height: 526px;
    border-width: 8px;
    border-radius: 42px;
  }

  .phone-screen.product-showcase-screen {
    width: 122%;
    height: 122%;
    border-radius: 32px;
    transform: scale(0.82);
  }
}

/* Homepage product-detail showcase.
   This is a code-native rendering of the in-app ProductDetails hero, not a screenshot. */
.product-showcase-scene {
  width: min(100%, 470px);
  min-height: 670px;
  margin-inline: auto;
  padding: 28px 0 52px;
  align-content: center;
}

.product-showcase-scene::before {
  right: -1%;
  bottom: 3%;
}

.product-showcase-scene::after {
  top: 6%;
  left: -2%;
}

.product-showcase-meta,
.product-showcase-controls {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
}

.product-showcase-meta {
  top: 0;
  right: 4px;
  left: 4px;
  justify-content: space-between;
  color: var(--zuno-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-showcase-live {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.product-showcase-live > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e8b57;
  box-shadow: 0 0 0 5px rgba(46, 139, 87, 0.12);
}

.product-showcase-phone {
  width: 368px;
  height: 650px;
  min-height: 650px;
  padding: 0;
  border-width: 9px;
  border-radius: 42px;
  overflow: hidden;
  background: #f7f3ec;
}

.product-showcase-phone::before {
  z-index: 6;
  top: 0;
  width: 108px;
  height: 21px;
  border-radius: 0 0 13px 13px;
}

.product-showcase-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0, #fff, transparent 210px),
    #f7f3ec;
  color: #172119;
  font-family: var(--zuno-sans);
  transform-origin: top left;
}

.showcase-appbar {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: end;
  height: 48px;
  padding: 0 15px 9px;
  border-bottom: 1px solid #e7dccc;
  background: rgba(255, 253, 248, 0.96);
}

.showcase-wordmark {
  color: #214734;
  font-family: var(--zuno-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.showcase-menu {
  display: grid;
  gap: 3px;
  align-content: center;
  width: 22px;
  height: 22px;
}

.showcase-menu::before,
.showcase-menu::after,
.showcase-menu i {
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #214734;
  content: "";
}

.showcase-avatar {
  justify-self: end;
  width: 22px;
  height: 22px;
  border: 1px solid #d5c4af;
  border-radius: 50%;
  background: #ede1d1;
}

.showcase-body {
  padding: 12px 12px 28px;
  transform-origin: center;
}

.showcase-body.is-changing {
  animation: showcase-in 0.34s ease both;
}

.showcase-body.is-changing-back {
  animation: showcase-in-back 0.34s ease both;
}

@keyframes showcase-in {
  from { opacity: 0; transform: translateX(10px); }
}

@keyframes showcase-in-back {
  from { opacity: 0; transform: translateX(-10px); }
}

.showcase-breadcrumbs {
  display: flex;
  gap: 5px;
  align-items: center;
  min-width: 0;
  margin: 0 0 10px;
  overflow: hidden;
  color: #756d61;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.showcase-breadcrumbs span {
  max-width: 112px;
  padding: 5px 7px;
  overflow: hidden;
  border: 1px solid #e7dccc;
  border-radius: 999px;
  background: #fff;
  text-overflow: ellipsis;
}

.showcase-breadcrumbs i {
  color: #a79b8b;
  font-size: 0.72rem;
  font-style: normal;
}

.showcase-product {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin-bottom: 11px;
}

.showcase-image-stage {
  display: grid;
  height: 136px;
  padding: 12px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #ece7df;
  border-radius: 8px;
  background: #fff;
}

.showcase-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-product-copy {
  min-width: 0;
  padding-top: 5px;
}

.showcase-watch {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  max-width: 100%;
  min-height: 27px;
  margin-bottom: 10px;
  padding: 5px 9px;
  overflow: hidden;
  border: 1px solid rgba(33, 71, 52, 0.14);
  border-radius: 999px;
  background: rgba(33, 71, 52, 0.08);
  color: #123f2a;
  font-size: 0.57rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.showcase-watch i {
  font-size: 0.9rem;
  font-style: normal;
}

.showcase-product-copy > small {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  color: #8c6742;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.showcase-product-copy h2 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #172018;
  font-family: var(--zuno-display);
  font-size: 1.34rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.showcase-compare {
  margin-bottom: 11px;
  padding: 10px;
  border: 1px solid #e7dccc;
  border-radius: 8px;
  background: #fff;
}

.showcase-compare > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.showcase-compare > header strong {
  color: #172018;
  font-size: 0.66rem;
}

.showcase-compare > header span {
  color: #81786c;
  font-size: 0.51rem;
  font-weight: 750;
}

.showcase-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.showcase-price {
  position: relative;
  display: flex;
  min-height: 102px;
  padding: 9px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #e8e1d8;
  border-radius: 7px;
  background: #fffdf9;
  line-height: 1.08;
}

.showcase-price--coles {
  box-shadow: inset 0 3px 0 #d71920;
}

.showcase-price--woolworths {
  box-shadow: inset 0 3px 0 #178841;
}

.showcase-price-head {
  display: flex;
  gap: 5px;
  width: 100%;
  min-height: 19px;
  align-items: center;
  flex-wrap: wrap;
}

.showcase-price-head strong {
  font-size: 0.58rem;
  font-weight: 900;
}

.showcase-price--coles .showcase-price-head strong {
  color: #d71920;
}

.showcase-price--woolworths .showcase-price-head strong {
  color: #178841;
}

.showcase-price-head em {
  padding: 3px 5px;
  border: 1px solid #ead6c6;
  border-radius: 999px;
  background: #fff7f1;
  color: #a34b2a;
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.showcase-price > small {
  display: block;
  min-height: 14px;
  margin-top: 2px;
  color: #6f6a60;
  font-size: 0.53rem;
  font-weight: 700;
}

.showcase-price > b {
  margin-top: 3px;
  color: #172119;
  font-size: 1.2rem;
  line-height: 1;
}

.showcase-price > span {
  display: block;
  margin-top: 3px;
  color: #6f6a60;
  font-size: 0.49rem;
  font-weight: 750;
}

.showcase-price > mark {
  display: block;
  max-width: 100%;
  margin-top: 5px;
  padding: 4px 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff1e6;
  color: #95502e;
  font-size: 0.48rem;
  font-weight: 850;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-list {
  padding: 0 1px 11px;
}

.showcase-list label {
  display: block;
  margin-bottom: 4px;
  color: #6f6a60;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-list > div {
  display: flex;
  height: 33px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e7dccc;
  border-radius: 7px;
  background: #fff;
  color: #393d38;
  font-size: 0.59rem;
}

.showcase-list button {
  width: 100%;
  height: 35px;
  margin-top: 7px;
  border: 0;
  border-radius: 7px;
  background: #174c34;
  color: #fff;
  font-size: 0.61rem;
  font-weight: 850;
}

.showcase-accordions {
  margin-inline: -12px;
  border-top: 1px solid #e7dccc;
  background: #fff;
}

.showcase-accordions span {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  height: 35px;
  padding: 0 13px;
  align-items: center;
  border-bottom: 1px solid #eee8df;
  color: #1d2730;
  font-size: 0.59rem;
}

.showcase-accordions b {
  font-weight: 800;
}

.product-showcase-controls {
  right: 0;
  bottom: 2px;
  left: 0;
  gap: 12px;
  justify-content: center;
}

.product-showcase-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 63, 43, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--zuno-green);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(60, 48, 30, 0.09);
}

.product-showcase-controls button:hover {
  background: var(--zuno-green);
  color: #fff;
}

.product-showcase-progress {
  width: 120px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 63, 43, 0.14);
}

.product-showcase-progress span {
  display: block;
  width: 5%;
  height: 100%;
  border-radius: inherit;
  background: var(--zuno-green);
  transition: width 0.3s ease;
}

@media (max-width: 1040px) {
  .product-showcase-scene {
    min-height: 592px;
    padding-top: 26px;
  }

  .product-showcase-phone {
    width: 306px;
    height: 540px;
    min-height: 540px;
  }

  .product-showcase-screen {
    width: 120.5%;
    height: 120.5%;
    transform: scale(0.83);
  }
}

@media (max-width: 760px) {
  .product-showcase-scene {
    width: min(100%, 410px);
    height: 645px;
    min-height: 645px;
    padding-top: 30px;
    overflow: visible;
  }

  .product-showcase-phone {
    width: min(340px, calc(100vw - 48px));
    height: 584px;
    min-height: 584px;
  }

  .product-showcase-screen {
    width: 110%;
    height: 110%;
    transform: scale(0.91);
  }

  .hero::after {
    height: 58%;
  }
}

@media (max-width: 390px) {
  .product-showcase-scene {
    height: 585px;
    min-height: 585px;
  }

  .product-showcase-phone {
    width: min(306px, calc(100vw - 38px));
    height: 526px;
    min-height: 526px;
  }

  .product-showcase-screen {
    width: 122%;
    height: 122%;
    transform: scale(0.82);
  }

  .product-showcase-meta {
    right: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-body.is-changing,
  .showcase-body.is-changing-back {
    animation: none;
  }
}

.error-404-hero .shelf-tag {
  display: grid;
  gap: 0;
  min-height: 0;
  padding: clamp(28px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(255, 247, 232, 0.98)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(43, 61, 42, 0.05) 27px,
      rgba(43, 61, 42, 0.05) 28px
    );
}

.shelf-tag-store {
  margin: 0 0 8px;
  color: var(--zuno-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shelf-tag-aisle {
  margin: 0 0 18px;
  color: var(--zuno-green);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shelf-tag-product {
  margin: 0;
  font-family: var(--zuno-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.05;
}

.shelf-tag-status {
  margin: 10px 0 22px;
  color: #9a3b2f;
  font-size: 1.05rem;
  font-weight: 800;
}

.shelf-tag-details {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 2px dashed rgba(43, 61, 42, 0.18);
}

.shelf-tag-details div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 12px;
  align-items: baseline;
}

.shelf-tag-details dt {
  margin: 0;
  color: var(--zuno-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelf-tag-details dd {
  margin: 0;
  font-weight: 700;
}

.shelf-tag-footnote {
  margin: 22px 0 0;
  color: var(--zuno-muted);
  font-size: 0.88rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .button-row,
  .button-row .button {
    width: 100%;
  }

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

  .nav-login {
    padding: 8px;
    text-align: center;
  }

  .phone-scene {
    width: 100%;
    margin-left: 0;
  }

  .phone {
    width: min(210px, calc(100vw - 58px));
    border-width: 7px;
    border-radius: 40px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .phone-scene::before {
    right: -2%;
  }

  .phone-scene::after {
    left: -1%;
  }

  .phone-scene {
    height: 320px;
  }

  .hero-panel,
  .card,
  .feature-card,
  .quote-card,
  .pricing-card {
    padding: 23px;
  }

  .retailer-row {
    justify-content: flex-start;
  }

  .visual-board {
    min-height: 360px;
  }

  .visual-board .mini-card {
    width: min(82%, 300px);
    padding: 18px;
  }

  .visual-board .mini-card:first-child {
    top: 28px;
    left: 18px;
  }

  .visual-board .mini-card:last-child {
    right: 18px;
    bottom: 28px;
  }

  .cta {
    padding: 30px 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-carousel-track {
    width: 100%;
    animation: none;
    transform: none;
  }

  .marketing-carousel-group {
    width: 100%;
    justify-content: center;
  }

  .marketing-carousel-group > span:not(:first-child),
  .marketing-carousel-group > a,
  .marketing-carousel-group[aria-hidden="true"] {
    display: none;
  }

  .marketing-carousel-group > span:first-child::after {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
