@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #292b29;
  --muted: #646960;
  --sage: #8da879;
  --sage-dark: #6f905b;
  --sage-light: #d8e0d0;
  --cream: #f6f3e7;
  --orange: #f3b650;
  --blue: #9ac9cf;
  --lilac: #b59ade;
  --white: #fff;
  --line: rgba(41, 43, 41, 0.11);
  --shadow: 0 28px 70px rgba(72, 86, 63, 0.16);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f8faf6;
  color: var(--ink);
  font-family: Outfit, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
}
nav a {
  color: #4f544d;
  transition: color 0.2s ease;
}
nav a:hover {
  color: var(--sage-dark);
}
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}

.hero {
  width: min(1240px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  padding: 64px 68px;
  background: var(--sage-light);
  border-radius: 46px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(111, 144, 91, 0.24);
  border-radius: 50%;
  left: -260px;
  top: -80px;
}
.hero-copy {
  max-width: 590px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage-dark);
}
.eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
h1 em,
h2 em {
  color: var(--sage-dark);
  font-style: normal;
}
h1 em {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.download-label {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
}
.store-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.store-buttons > a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 205px;
  min-height: 72px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(41, 43, 41, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .store-buttons > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(41, 43, 41, 0.24);
  }
}
.store-buttons span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.store-buttons small {
  margin-bottom: 4px;
  font-size: 12px;
}
.store-buttons strong {
  font-size: 20px;
}
.store-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-visual {
  min-height: 790px;
  position: relative;
}
.hero-screen {
  width: 355px;
  height: auto;
  display: block;
  position: absolute;
  right: 44px;
  top: 10px;
  border: 10px solid rgba(255, 255, 255, 0.85);
  border-radius: 46px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.hero-pepper {
  width: 205px;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 3;
  filter: drop-shadow(0 18px 22px rgba(69, 82, 61, 0.18));
}
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape-one {
  width: 390px;
  height: 390px;
  right: -120px;
  top: 60px;
  background: rgba(141, 168, 121, 0.4);
}
.shape-two {
  width: 180px;
  height: 180px;
  left: 70px;
  top: 80px;
  border: 1px solid rgba(111, 144, 91, 0.35);
}

.trust-strip {
  width: min(1100px, calc(100% - 40px));
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #697067;
  font-size: 14px;
  font-weight: 600;
}
.trust-strip p {
  margin: 0;
}
.trust-strip span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.section {
  width: min(1120px, calc(100% - 40px));
  margin: 96px auto 0;
  padding: 0;
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-heading .eyebrow {
  justify-content: center;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.section-heading > p:last-child,
.showcase-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 45px rgba(69, 83, 61, 0.06);
}
.feature-main {
  grid-column: span 2;
  background: var(--sage-light);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--sage);
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.feature-icon.orange {
  background: var(--orange);
}
.feature-icon.blue {
  background: var(--blue);
}
.feature-icon.lilac {
  background: var(--lilac);
}
.feature-icon.coral {
  background: #e99082;
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}
.feature-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}
.diet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.diet-chips span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #53614c;
  font-size: 13px;
  font-weight: 600;
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}
.showcase-image {
  height: auto;
  padding: 12px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 52px;
  background: #dce6d6;
  box-shadow: var(--shadow);
}
.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 39px;
}
.showcase-copy ul {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.showcase-copy li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.showcase-copy li b {
  color: var(--sage-dark);
}
.showcase-copy li span {
  display: flex;
  flex-direction: column;
}
.showcase-copy li strong {
  font-size: 18px;
}
.showcase-copy li small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.recipe-library {
  padding: 58px 70px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 75px;
  border-radius: 40px;
  background: var(--sage-light);
  overflow: hidden;
}
.recipe-count {
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 12px solid var(--sage);
  border-radius: 50%;
  background: white;
  color: var(--sage-dark);
  line-height: 1;
  box-shadow: 0 18px 50px rgba(69, 83, 61, 0.08);
}
.recipe-count strong {
  font-size: 82px;
  letter-spacing: -0.06em;
}
.recipe-count span {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
}
.recipe-library-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 58px);
}
.recipe-library-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.recipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.recipe-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #53614c;
  font-size: 13px;
  font-weight: 600;
}

.journal-section {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  gap: 90px;
}
.journal-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.journal-tags span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #596255;
  font-size: 13px;
  font-weight: 600;
}
.journal-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.newsletter {
  min-height: 390px;
  padding: 62px 70px;
  border-radius: 40px;
  background: var(--sage-dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 45px;
  overflow: hidden;
  position: relative;
}
.newsletter > div {
  position: relative;
  z-index: 2;
}
.newsletter .eyebrow {
  color: #eaf0e5;
}
.newsletter h2 {
  margin-bottom: 14px;
  font-size: clamp(35px, 4vw, 52px);
}
.newsletter > div > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}
.newsletter-pepper {
  width: 240px;
  position: absolute;
  left: 45%;
  bottom: -90px;
  opacity: 0.66;
  transform: rotate(-13deg);
}
.store-buttons-light {
  flex-direction: column;
  align-items: stretch;
}
.store-buttons-light > a {
  justify-content: center;
  background: white;
  color: var(--ink);
  border-color: white;
}
.store-buttons-light .store-logo {
  filter: none;
}
.mobile-download {
  display: none;
}

footer {
  width: min(1120px, calc(100% - 40px));
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #6c716a;
  font-size: 13px;
}
footer p {
  margin: 0;
}
footer > div {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 55px 38px 0;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-visual {
    min-height: 790px;
    margin-top: 30px;
  }
  .hero-screen {
    right: 12%;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-main {
    grid-column: span 2;
  }
  .showcase {
    gap: 45px;
  }
  .recipe-library {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 48px;
  }
  .recipe-count {
    width: 210px;
    height: 210px;
    border-width: 10px;
  }
  .recipe-count strong {
    font-size: 66px;
  }
  .journal-section {
    gap: 45px;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }
  .brand {
    font-size: 19px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .nav-cta {
    padding: 10px 14px;
  }
  .hero {
    width: calc(100% - 20px);
    min-height: auto;
    padding: 42px 22px 0;
    border-radius: 28px;
  }
  h1 {
    font-size: 49px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .download-block {
    margin-top: 28px;
  }
  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }
  .store-buttons > a {
    width: 100%;
    min-height: 76px;
    justify-content: center;
  }
  .hero-visual {
    min-height: 610px;
  }
  .hero-screen {
    width: 265px;
    height: auto;
    right: 1%;
    border-radius: 34px;
  }
  .hero-pepper {
    width: 145px;
    left: -15px;
  }
  .trust-strip {
    flex-direction: column;
    gap: 9px;
  }
  .trust-strip span {
    display: none;
  }
  .section {
    width: calc(100% - 28px);
    margin-top: 72px;
    padding: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-main {
    grid-column: auto;
  }
  .feature-icon {
    margin-bottom: 28px;
  }
  .showcase {
    grid-template-columns: 1fr;
  }
  .showcase-image {
    height: auto;
    padding: 9px;
    border-width: 3px;
    border-radius: 42px;
  }
  .showcase-image img {
    height: auto;
    border-radius: 32px;
  }
  .recipe-library {
    padding: 42px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }
  .recipe-count {
    width: 210px;
    height: 210px;
    margin: 0 auto;
  }
  .recipe-library .eyebrow,
  .recipe-tags {
    justify-content: center;
  }
  .journal-section {
    grid-template-columns: 1fr;
  }
  .journal-screen {
    width: min(100%, 390px);
    margin: 0 auto;
  }
  .newsletter {
    width: calc(100% - 20px);
    padding: 45px 24px;
    border-radius: 28px;
  }
  footer {
    padding: 35px 0 120px;
    flex-direction: column;
    text-align: center;
  }
  .mobile-download {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 50;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    background: rgba(41, 43, 41, 0.94);
    box-shadow: 0 16px 40px rgba(41, 43, 41, 0.32);
    backdrop-filter: blur(12px);
  }
  .mobile-download a {
    min-height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: white;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
  }
}

.bolded:hover {
  text-decoration: underline;
}
.bolded {
  font-weight: bold;
  color: #62804f;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
