@font-face {
  font-family: Satoshi;
  src: url("assets/satoshi.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: #fff;
  color: #2b1810;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
summary {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #e85a3c;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  font-weight: 700;
}
p {
  color: #484848;
}
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
header.scrolled {
  border-color: #e9e9e9;
}
.nav {
  max-width: 1280px;
  padding: 12px 4px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  gap: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: #e85a3c;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  background: #2b1810;
  color: #fff;
  border-radius: 17px;
  box-shadow: 0 5px 12px #0003;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    background 0.22s;
}
.button:hover {
  background: #6b4a38;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px #0003;
}
.button:active {
  transform: translateY(0);
}
.button svg {
  width: 19px;
  height: 19px;
}
.nav-cta {
  font-size: 14px;
  border-radius: 13px;
  padding: 8px 13px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 25px;
}
.hero {
  padding-top: 82px;
  overflow: hidden;
}
.hero-copy {
  text-align: center;
  position: relative;
  z-index: 3;
  animation: enter 0.85s both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f6f6f6;
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #484848;
}
.store-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #079dff;
  color: white;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
h1 {
  font-size: 66px;
  margin: 22px 0 18px;
  line-height: 0.99;
  letter-spacing: -0.055em;
}
mark {
  display: inline-block;
  color: #e85a3c;
  background: #fff0e8;
  border-radius: 14px;
  padding: 7px 11px 10px;
  margin-bottom: 2px;
}
.hero-copy p {
  font-size: 20px;
  line-height: 1.5;
}
.hero-buttons {
  margin-top: 26px;
}
.android-link {
  display: inline-block;
  font-size: 13px;
  color: #777;
  margin-top: 11px;
}
.android-link:hover {
  color: #e85a3c;
}
.android-link span {
  padding-left: 3px;
}
.hero-stage {
  position: relative;
  width: 1080px;
  max-width: 100%;
  height: 1050px;
  margin: 24px auto 0;
  --progress: 0;
}
.phone-wrap {
  width: 500px;
  height: 773px;
  margin: 0 auto;
  position: relative;
  transform: translateX(-38px) scale(calc(1 + var(--progress) * 0.12));
  transform-origin: 50% 25%;
  will-change: transform;
}
.hero-phone {
  width: 500px;
  height: auto;
  max-width: none;
}
.scan-glow {
  position: absolute;
  left: 29%;
  right: 11%;
  top: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e85a3c, transparent);
  box-shadow: 0 0 18px #e85a3c;
  animation: scan 4s ease-in-out infinite;
  opacity: 0.6;
}
.floating {
  position: absolute;
  width: 132px;
  animation: float 5s ease-in-out infinite;
  transition: opacity 0.4s;
  opacity: calc(1 - var(--progress));
}
.salad {
  left: 17%;
  top: 130px;
  filter: blur(2px);
  animation-delay: -1s;
}
.ramen {
  right: 21%;
  top: 70px;
  animation-delay: -2s;
}
.pizza {
  left: 25%;
  top: 450px;
  width: 123px;
  animation-delay: -3s;
}
.chocolate {
  right: 15%;
  top: 380px;
  filter: blur(2px);
  animation-delay: -0.7s;
}
.hero-stage h2 {
  text-align: center;
  font-size: 76px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
  line-height: 1.04;
}
.macro {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f6f6;
  width: 190px;
  padding: 14px;
  border-radius: 25px;
  opacity: var(--progress);
  transform: translateY(calc((1 - var(--progress)) * 30px))
    rotate(var(--rotate));
  font-size: 14px;
  color: #777;
}
.macro i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  font-style: normal;
  font-size: 30px;
}
.macro span {
  display: flex;
  flex-direction: column;
}
.macro strong {
  font-size: 20px;
  color: #494949;
  line-height: 1.1;
}
.green {
  color: #557344;
  background: #edf2e8;
}
.blue {
  color: #527dff;
  background: #e3e9ff;
}
.pink {
  color: #fc4e98;
  background: #fbe0ec;
}
.yellow {
  color: #ba8520;
  background: #fff8ee;
}
.macro-carbs {
  left: 5%;
  top: 630px;
  --rotate: 4deg;
}
.macro-protein {
  right: 5%;
  top: 630px;
  --rotate: -4deg;
}
.macro-calories {
  left: 3%;
  top: 835px;
  --rotate: -4deg;
}
.macro-fat {
  right: 1%;
  top: 850px;
  --rotate: -4deg;
}
.section {
  max-width: 1080px;
  margin: auto;
  padding: 95px 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 38px;
}
.section-heading p {
  font-size: 20px;
  margin-top: 15px;
  line-height: 1.5;
}
.food-orbit {
  position: relative;
  height: 760px;
  margin-top: 40px;
  max-width: 1000px;
  text-align: center;
  display: grid;
  place-content: center;
}
.food-orbit h2 {
  font-size: 66px;
}
.orbit-food {
  position: absolute;
  width: 135px;
  border: 0;
  background: none;
  padding: 0;
  transition: transform 0.4s;
}
.orbit-food img {
  filter: blur(2px);
  transition:
    filter 0.4s,
    transform 0.4s;
}
.orbit-food:hover img,
.orbit-food:focus img,
.orbit-food.active img {
  filter: none;
  transform: scale(1.15) rotate(-8deg);
}
.orbit-food:hover,
.orbit-food:focus {
  z-index: 5;
}
.orbit-food span {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%) translateY(8px);
  white-space: nowrap;
  background: #2b1810;
  color: #fff;
  font-size: 14px;
  border-radius: 20px;
  padding: 7px 13px;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
}
.orbit-food:hover span,
.orbit-food:focus span,
.orbit-food.active span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.orbit-0 {
  left: 14%;
  top: 50px;
}
.orbit-1 {
  left: 43%;
  top: 0;
}
.orbit-2 {
  right: 10%;
  top: 65px;
}
.orbit-3 {
  left: 1%;
  top: 325px;
}
.orbit-4 {
  right: 0;
  top: 335px;
}
.orbit-5 {
  left: 24%;
  bottom: 95px;
}
.orbit-6 {
  right: 23%;
  bottom: 100px;
}
.orbit-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.decode {
  padding-top: 70px;
  text-align: center;
}
.burger {
  height: 690px;
  width: 760px;
  max-width: 100%;
  position: relative;
  margin: 50px auto 0;
  --spread: 1;
}
.ingredient {
  position: absolute;
  width: 410px;
  left: calc(50% - 205px);
  top: calc(50px + var(--layer) * 105px);
  z-index: calc(6 - var(--layer));
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(calc((var(--layer) - 2) * var(--spread) * 13px));
}
.ingredient img {
  width: 100%;
}
.ingredient-0 {
  --layer: 0;
}
.ingredient-1 {
  --layer: 1;
}
.ingredient-2 {
  --layer: 2;
}
.ingredient-3 {
  --layer: 3;
}
.ingredient-4 {
  --layer: 4;
}
.ingredient span {
  position: absolute;
  top: 50%;
  left: -130px;
  border: 1px solid #e85a3c;
  background: #fff8ee;
  font-size: 14px;
  border-radius: 17px;
  padding: 8px 18px;
  white-space: nowrap;
}
.ingredient span:after {
  content: "";
  width: 48px;
  height: 1px;
  background: #e85a3c;
  position: absolute;
  left: 100%;
  top: 50%;
}
.ingredient:nth-child(even) span {
  left: auto;
  right: -130px;
}
.ingredient:nth-child(even) span:after {
  left: auto;
  right: 100%;
}
.burger:hover,
.burger:focus {
  --spread: 2;
}
.small-note {
  text-align: center;
  font-size: 13px;
  color: #888;
}
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 960px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #999;
}
.steps-copy h2 {
  margin: 14px 0 32px;
  font-size: 48px;
}
.step {
  border: 0;
  border-top: 1px solid #eee;
  background: transparent;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  gap: 17px;
  color: #8c8c8c;
}
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  text-align: center;
  flex-shrink: 0;
  font-weight: 700;
  padding-top: 2px;
}
.step strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.03em;
}
.step.active {
  color: #2b1810;
}
.step.active .step-num {
  background: #e85a3c;
  color: white;
}
.step-description {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s;
  color: #777;
}
.step.active .step-description {
  max-height: 150px;
  opacity: 1;
  margin-top: 9px;
}
.step-phone {
  width: 430px;
  max-width: 100%;
  position: relative;
}
.step-phone img {
  width: 100%;
  transition: opacity 0.2s;
}
.features {
  max-width: 900px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-card {
  padding: 32px;
  border-radius: 24px;
  background: #f6f6f6;
  overflow: hidden;
}
.feature-card > p {
  color: #888;
  margin-top: 12px;
  line-height: 1.55;
}
.feature-art {
  height: 280px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.mini-card {
  background: white;
  border-radius: 32px;
  padding: 24px;
  font-size: 14px;
  position: relative;
}
.progress-art {
  padding: 20px 8px 0;
}
.muted {
  color: #999;
}
.pill {
  display: inline-block;
  background: #edf2e8;
  color: #557344;
  border-radius: 30px;
  font-size: 13px;
  padding: 4px 12px;
}
.mini-card > .pill {
  position: absolute;
  right: 24px;
  top: 24px;
}
.intake {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-top: 4px;
}
.intake b {
  color: #e85a3c;
}
.intake span {
  color: #ccc;
}
.week {
  display: flex;
  justify-content: space-between;
  margin: 23px -20px 0;
  gap: 4px;
}
.week button {
  background: none;
  border: 0;
  border-radius: 20px;
  color: #999;
  padding: 7px 8px;
  min-width: 44px;
  transition: 0.2s;
}
.week button span {
  display: block;
  font-size: 13px;
}
.week button b {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.week button:hover,
.week button.selected {
  background: #fbe7de;
  color: #e85a3c;
}
.diary-art {
  padding: 0 16px;
}
.food-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
}
.food-row img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.food-row > span {
  margin-left: auto;
  width: 44px;
  background: #f6f6f6;
  border-radius: 50%;
  height: 44px;
  display: grid;
  place-items: center;
  color: #e85a3c;
}
.faded {
  margin-top: 10px;
  opacity: 0.5;
}
.diary-art:after,
.search-art:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: linear-gradient(transparent, #f6f6f6);
  pointer-events: none;
}
.search-art {
  padding: 0 16px;
  height: 280px;
}
.search-art .mini-card {
  padding: 20px 24px;
}
.search-input {
  display: flex;
  background: #f6f6f6;
  border-radius: 8px;
  align-items: center;
  margin: 12px 0;
}
.search-input input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: none;
  padding: 8px 10px;
  font-size: 14px;
}
.search-input > span {
  padding: 0 10px;
  font-size: 23px;
  color: #999;
}
.food-result {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  line-height: 1.3;
  font-size: 14px;
}
.food-result img {
  width: 44px;
  height: 44px;
}
.food-result small {
  display: block;
  font-size: 13px;
  color: #999;
}
.result-arrow {
  margin-left: auto;
  color: #aaa;
}
.food-result[hidden] {
  display: none;
}
.no-results {
  font-size: 14px;
  padding: 15px 0;
}
.fasting-art {
  display: grid;
  place-items: center;
}
.fasting-ring {
  width: 225px;
  height: 225px;
  border: 7px solid #e85a3c;
  border-left-color: #fbe7de;
  border-bottom-color: #fbe7de;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 12px #fff;
  transform: rotate(-8deg);
}
.fasting-ring > * {
  transform: rotate(8deg);
}
.fasting-ring > span:first-child {
  font-size: 14px;
  color: #888;
}
.fasting-ring strong {
  font-size: 54px;
  letter-spacing: -0.06em;
}
.fasting-ring .pill {
  font-size: 12px;
  background: #fff0e8;
  color: #e85a3c;
  padding: 5px 10px;
}
.pip-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 780px;
  margin: 45px auto 0;
}
.pip-mascot {
  width: 310px;
  animation: float 6s ease-in-out infinite;
}
.pip-chat {
  width: 390px;
  background: #f6f6f6;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 28px;
  transform: rotate(2deg);
  box-shadow: 0 15px 35px #00000008;
}
.pip-label {
  font-size: 14px;
  font-weight: 700;
}
.pip-label i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e85a3c;
  border-radius: 50%;
  margin-right: 6px;
}
.chat-question {
  background: #fff0e8;
  border-radius: 16px 16px 0 16px;
  padding: 13px 16px;
  margin: 23px 0 15px;
  font-size: 16px;
}
.chat-answer {
  border-radius: 18px;
  background: white;
  padding: 17px;
}
.chat-answer img {
  width: 80px;
  margin: auto;
}
.chat-answer p {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.5;
}
.chat-cta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 22px;
  font-weight: 600;
}
.screens {
  text-align: center;
}
.screen-fan {
  height: 440px;
  max-width: 780px;
  margin: 55px auto 20px;
  position: relative;
  perspective: 1100px;
}
.fan-card {
  position: absolute;
  left: calc(50% - 140px);
  width: 280px;
  height: 380px;
  border-radius: 32px;
  border: 5px solid white;
  box-shadow: 0 4px 30px #0003;
  overflow: hidden;
  background: #f6f6f6;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center 80%;
  top: 0;
}
.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fan-0 {
  transform: translate(-215px, 40px) rotate(-10deg);
}
.fan-1 {
  z-index: 2;
}
.fan-2 {
  transform: translate(215px, 40px) rotate(10deg);
  z-index: 3;
}
.fan-card:hover {
  z-index: 5;
  transform: translateY(-15px) rotate(0) scale(1.04);
}
.fan-0:hover {
  transform: translate(-230px, 15px) rotate(-5deg) scale(1.04);
}
.fan-2:hover {
  transform: translate(230px, 15px) rotate(5deg) scale(1.04);
}
.pricing {
  padding-top: 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 48px;
  align-items: center;
}
.price-card {
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 42px;
  box-shadow: 0 9px 20px #0000000c;
  overflow: hidden;
}
.price-top {
  padding: 16px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 6px 12px #0000000c;
}
.price-info {
  background: #f6f6f6;
  border-radius: 38px;
  padding: 24px;
}
.plan-tag {
  display: inline-block;
  border-radius: 30px;
  box-shadow: inset 0 1px 2px #0003;
  background: #ececec;
  padding: 6px 24px;
  font-weight: 700;
  font-size: 20px;
}
.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 12px 0 4px;
}
.price b {
  font-size: 46px;
  letter-spacing: -0.065em;
  line-height: 1.2;
}
.price span {
  font-size: 18px;
  font-weight: 600;
}
.price-info p {
  font-size: 16px;
  font-weight: 500;
}
.price-top .button {
  display: flex;
  width: 100%;
  margin-top: 16px;
  background: #f6f6f6;
  color: #444;
  box-shadow: none;
  padding: 9px;
}
.price-features {
  padding: 28px 30px;
  font-size: 16px;
  color: #777;
}
.price-features ul {
  list-style: none;
  padding: 0;
  margin: 3px 0 0;
}
.price-features li {
  position: relative;
  padding-left: 23px;
  line-height: 1.7;
  font-weight: 500;
}
.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e85a3c;
  font-size: 14px;
}
.featured {
  transform: translateY(-12px);
}
.featured .price-info {
  background: linear-gradient(125deg, #fbe7de, #e85a3c);
  color: white;
}
.featured .plan-tag {
  background: #00000012;
}
.featured .price-info p {
  color: white;
}
.featured .price-top .button {
  background: #2b1810;
  color: white;
  box-shadow: 0 4px 10px #0003;
}
.pricing-note {
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  max-width: 690px;
  text-align: center;
  margin: 24px auto 0;
}
.faq {
  padding-top: 30px;
  max-width: 850px;
}
.faq-list {
  max-width: 700px;
  margin: auto;
}
.faq details {
  border-bottom: 1px solid #e9e9e9;
}
.faq summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 24px;
  font-weight: 400;
  color: #999;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
  color: #e85a3c;
}
.faq details p {
  padding: 0 35px 23px 0;
  color: #777;
  line-height: 1.7;
}
.final-cta {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 70px;
}
.app-crown {
  width: 128px;
  height: 128px;
  margin: 0 auto 32px;
  position: relative;
}
.app-crown img {
  border-radius: 34px;
  width: 100%;
}
.app-crown > span {
  position: absolute;
  right: -20px;
  top: -45px;
  font-size: 72px;
  transform: rotate(20deg);
  animation: crown 5s ease-in-out infinite;
}
.final-cta h2 {
  margin-top: 32px;
}
.final-cta > p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 17px;
}
.download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.button.secondary {
  background: #f6f6f6;
  color: #222;
  box-shadow: none;
}
footer {
  max-width: 1280px;
  margin: auto;
  border-top: 1px solid #e9e9e9;
  padding: 64px 4px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 60px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-grid > div:first-child {
  gap: 3px;
}
.footer-grid .brand {
  margin-bottom: 14px;
}
.footer-grid .brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.footer-grid p {
  font-size: 16px;
  color: #999;
}
.footer-grid > div:not(:first-child) > a {
  font-size: 20px;
  font-weight: 600;
}
.footer-grid a:hover {
  color: #e85a3c;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  margin-top: 55px;
  padding-top: 22px;
  font-size: 13px;
  color: #999;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.skip {
  position: fixed;
  top: -100px;
  background: white;
  padding: 10px;
  z-index: 1000;
}
.skip:focus {
  top: 10px;
}
.reveal {
  transition:
    opacity 0.7s,
    translate 0.7s;
}
.motion-ready .reveal:not(.visible) {
  opacity: 0;
  translate: 0 24px;
}
@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -15px;
  }
}
@keyframes scan {
  0%,
  100% {
    top: 22%;
    opacity: 0;
  }
  20% {
    opacity: 0.65;
  }
  80% {
    opacity: 0.65;
  }
  95% {
    top: 40%;
    opacity: 0;
  }
}
@keyframes enter {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes crown {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(12deg);
  }
}
@media (min-width: 1600px) {
  .nav,
  footer {
    max-width: 1280px;
  }
  .hero-stage {
    margin-top: 30px;
  }
}
@media (max-width: 1320px) {
  .nav,
  footer {
    margin-left: 5%;
    margin-right: 5%;
  }
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-stage {
    width: 1000px;
  }
  .macro-carbs {
    left: 4%;
  }
  .macro-protein {
    right: 4%;
  }
}
@media (max-width: 900px) {
  h2 {
    font-size: 38px;
  }
  .hero-stage {
    height: 970px;
  }
  .phone-wrap {
    width: 470px;
    height: 724px;
    transform: translateX(-35px) scale(calc(1 + var(--progress) * 0.05));
  }
  .hero-phone {
    width: 470px;
  }
  .hero-stage h2 {
    font-size: 64px;
  }
  .floating {
    width: 112px;
  }
  .salad {
    left: 8%;
  }
  .ramen {
    right: 8%;
  }
  .pizza {
    left: 15%;
    width: 100px;
  }
  .chocolate {
    right: 6%;
  }
  .macro {
    width: 150px;
    padding: 10px;
    font-size: 13px;
    gap: 8px;
  }
  .macro i {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .macro-carbs,
  .macro-protein {
    top: 615px;
  }
  .macro-calories,
  .macro-fat {
    top: 820px;
  }
  .macro strong {
    font-size: 17px;
  }
  .how {
    gap: 15px;
  }
  .steps-copy h2 {
    font-size: 38px;
  }
  .step strong {
    font-size: 20px;
  }
  .feature-card {
    padding: 24px;
  }
  .diary-art,
  .search-art {
    padding: 0;
  }
  .mini-card {
    padding: 20px;
  }
  .food-row img {
    width: 45px;
    height: 45px;
  }
  .food-row {
    gap: 0;
  }
  .price-info {
    padding: 20px;
  }
  .price b {
    font-size: 36px;
  }
  .price span {
    font-size: 15px;
  }
  .price-features {
    padding: 24px 20px;
    font-size: 14px;
  }
  .plan-tag {
    font-size: 18px;
  }
  .fan-card {
    width: 245px;
    height: 350px;
    left: calc(50% - 122px);
  }
  .fan-0 {
    transform: translate(-175px, 40px) rotate(-10deg);
  }
  .fan-2 {
    transform: translate(175px, 40px) rotate(10deg);
  }
  .fan-0:hover {
    transform: translate(-180px, 20px) rotate(-5deg);
  }
  .fan-2:hover {
    transform: translate(180px, 20px) rotate(5deg);
  }
}
/* Between 641px and 1024px .food-orbit runs edge to edge (its 1000px max-width
   has not kicked in yet), so the orbit-3 and orbit-4 tooltips, still centred
   on their icon at the container's left/right edge, print past the viewport
   and force an invisible horizontal scrollbar. Pull each bubble back toward
   the centre instead of centring it on the icon, the same move DoorDash
   Dasher makes for a coach mark anchored to an edge icon:
   mobbin.com/screens/7850aac1-1da6-4f8b-a6a6-a2ce9e002fc7
   its tooltip stays pinned near the icon but shifts inward so the full bubble
   remains on screen. */
@media (max-width: 1024px) {
  .orbit-3 span {
    left: 62%;
  }
  .orbit-4 span {
    left: 38%;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 75px;
  }
  .nav {
    margin: 0;
    padding: 10px 20px;
    height: 60px;
  }
  .nav-cta {
    margin-left: auto;
    margin-right: 14px;
    font-size: 12px;
    padding: 8px 10px;
    gap: 3px;
  }
  .nav-cta svg {
    width: 15px;
  }
  .brand {
    font-size: 17px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    top: 60px;
    left: 0;
    right: 0;
    transform: none;
    padding: 22px;
    background: white;
    border-bottom: 1px solid #eee;
    justify-content: space-around;
    gap: 12px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links > a,
  .nav-links .tools-menu > summary {
    padding-block: 12px;
  }
  body:has(.nav-links.open)::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(28, 19, 16, 0.35);
  }
  .hero {
    padding-top: 92px;
  }
  .hero-copy {
    padding: 0 16px;
  }
  .badge {
    font-size: 13px;
    padding: 5px 11px;
    gap: 7px;
  }
  h1 {
    font-size: clamp(42px, 10.8vw, 60px);
    margin: 24px 0 20px;
    letter-spacing: -0.055em;
    line-height: 1.03;
  }
  mark {
    padding: 5px 8px 7px;
    border-radius: 11px;
  }
  .hero-copy p {
    font-size: 17px;
    max-width: 350px;
    margin: auto;
  }
  .desktop-br {
    display: none;
  }
  .hero-buttons {
    margin-top: 23px;
  }
  .android-link {
    font-size: 12px;
  }
  .hero-stage {
    margin-top: 30px;
    height: 820px;
    width: 100%;
  }
  .phone-wrap {
    width: 390px;
    max-width: 100%;
    height: 602px;
    transform: translateX(-30px);
  }
  .hero-phone {
    width: 390px;
    max-width: 100%;
  }
  .floating {
    width: 83px;
  }
  .salad {
    left: 0;
    top: 110px;
  }
  .ramen {
    right: 0;
    top: 45px;
  }
  .pizza {
    left: 2%;
    top: 345px;
    width: 80px;
  }
  .chocolate {
    right: -1%;
    top: 300px;
  }
  .hero-stage h2 {
    font-size: 44px;
    line-height: 1.05;
    margin-top: 30px;
  }
  .macro {
    width: 120px;
    padding: 8px;
    gap: 7px;
    border-radius: 16px;
    font-size: 12px;
  }
  .macro i {
    width: 30px;
    height: 30px;
    font-size: 22px;
    border-radius: 8px;
  }
  .macro strong {
    font-size: 15px;
  }
  .macro-carbs,
  .macro-protein {
    top: 550px;
  }
  .macro-carbs {
    left: 2%;
  }
  .macro-protein {
    right: 2%;
  }
  .macro-calories,
  .macro-fat {
    top: 735px;
  }
  .macro-calories {
    left: 13%;
  }
  .macro-fat {
    right: 13%;
  }
  .section {
    padding: 64px 22px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .section-heading p {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 14px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .food-orbit {
    margin-top: 10px;
    height: 540px;
  }
  .food-orbit h2 {
    font-size: 44px;
  }
  .orbit-food {
    width: 78px;
  }
  .orbit-0 {
    left: 8%;
    top: 20px;
  }
  .orbit-1 {
    left: 43%;
    top: 0;
  }
  .orbit-2 {
    right: 1%;
    top: 65px;
  }
  .orbit-3 {
    left: 0;
    top: 255px;
  }
  .orbit-4 {
    right: 0;
    top: 295px;
  }
  .orbit-5 {
    left: 22%;
    bottom: 65px;
  }
  .orbit-6 {
    right: 18%;
    bottom: 85px;
  }
  .orbit-food span {
    font-size: 11px;
    padding: 5px 8px;
    max-width: 140px;
    white-space: normal;
    min-width: 115px;
  }
  .orbit-3 span {
    left: 90%;
  }
  .orbit-4 span,
  .orbit-2 span {
    left: 5%;
  }
  .orbit-hint {
    bottom: 0;
    font-size: 12px;
  }
  .burger {
    height: 440px;
    margin-top: 32px;
  }
  .ingredient {
    width: 240px;
    left: calc(50% - 120px);
    top: calc(30px + var(--layer) * 65px);
  }
  .ingredient span {
    font-size: 11px;
    padding: 4px 7px;
    left: -48px;
    top: 65%;
  }
  .ingredient:nth-child(even) span {
    right: -48px;
  }
  .ingredient span:after {
    width: 15px;
  }
  .small-note {
    font-size: 12px;
  }
  .how {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps-copy h2 {
    font-size: 37px;
    margin-bottom: 20px;
  }
  .step {
    padding: 18px 0;
  }
  .step strong {
    font-size: 21px;
  }
  .step-description {
    font-size: 16px;
  }
  .step-phone {
    width: 340px;
    margin: auto;
    transform: translateX(-25px);
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card {
    padding: 28px;
  }
  .feature-art {
    height: 260px;
    margin-bottom: 15px;
  }
  .mini-card {
    padding: 24px;
  }
  .diary-art {
    padding: 0 8px;
  }
  .food-row img {
    width: 50px;
  }
  .progress-art {
    padding: 10px 5px 0;
  }
  .week {
    margin-left: -15px;
    margin-right: -15px;
  }
  .feature-card > p {
    font-size: 16px;
  }
  .pip-demo {
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
  .pip-mascot {
    width: 230px;
  }
  .pip-chat {
    width: 100%;
    transform: rotate(0);
  }
  .screen-fan {
    height: 335px;
    margin: 40px -22px 10px;
    overflow: hidden;
  }
  .fan-card {
    width: 180px;
    height: 280px;
    left: calc(50% - 90px);
    border-radius: 24px;
    border-width: 4px;
  }
  .fan-0 {
    transform: translate(-110px, 26px) rotate(-10deg);
  }
  .fan-2 {
    transform: translate(110px, 26px) rotate(10deg);
  }
  .fan-0:hover {
    transform: translate(-110px, 15px) rotate(-6deg);
  }
  .fan-2:hover {
    transform: translate(110px, 15px) rotate(6deg);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 360px;
    margin: 30px auto 0;
  }
  .featured {
    transform: none;
  }
  .price-top {
    padding: 14px;
  }
  .price-info {
    padding: 24px;
  }
  .price b {
    font-size: 46px;
  }
  .price span {
    font-size: 18px;
  }
  .price-features {
    padding: 25px 30px;
    font-size: 16px;
  }
  .pricing-note {
    font-size: 12px;
  }
  .faq summary {
    font-size: 16px;
    padding: 20px 0;
  }
  .faq details p {
    font-size: 15px;
    padding-right: 10px;
  }
  .final-cta {
    padding-top: 70px;
  }
  .app-crown {
    width: 110px;
    height: 110px;
  }
  .app-crown > span {
    font-size: 61px;
    top: -36px;
    right: -17px;
  }
  .final-cta h2 {
    margin-top: 25px;
  }
  .final-cta > p {
    font-size: 18px;
  }
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .download-buttons .button {
    min-width: 210px;
  }
  footer {
    margin: 0 22px;
    padding: 40px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:not(:first-child) > a {
    font-size: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
    font-size: 12px;
  }
  .footer-bottom > div {
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    translate: none !important;
  }
  .macro {
    opacity: 1;
  }
  .phone-wrap {
    will-change: auto;
  }
  .scan-glow {
    display: none;
  }
}
@media (max-width: 360px) {
  .ingredient {
    width: 210px;
    left: calc(50% - 105px);
  }
  .ingredient span {
    left: -42px;
  }
  .ingredient:nth-child(even) span {
    right: -42px;
  }
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-cta {
    margin-right: 8px;
  }
  .week button {
    min-width: 36px;
    padding: 7px 5px;
  }
  .feature-card {
    padding: 23px;
  }
  .food-row img {
    width: 42px;
  }
  .hero-stage h2 {
    font-size: 40px;
  }
}

/* Calfit palette and immediate, predecoded step screens. */
:root {
  --calfit-coral: #e85a3c;
  --calfit-cream: #fff8ee;
  --calfit-ink: #2b1810;
  --calfit-sage: #8fa876;
  --calfit-gold: #f5c34b;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero-buttons .button {
  min-height: 44px;
}
.hero-buttons .secondary {
  background: var(--calfit-cream);
  color: var(--calfit-ink);
  border: 1px solid #ecd8cd;
}
.featured .price-info {
  color: var(--calfit-ink);
  background: linear-gradient(125deg, #fbe7de, var(--calfit-coral));
}
.featured .price-info p {
  color: var(--calfit-ink);
}
.step-phone {
  display: grid;
  aspect-ratio: 1189/1834;
  align-self: center;
}
.step-phone .step-screen {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.step-phone .step-screen.is-active {
  opacity: 1;
}
.intake-track {
  height: 5px;
  background: #fbe7de;
  margin-top: 13px;
  border-radius: 8px;
  overflow: hidden;
}
.intake-track span {
  display: block;
  height: 100%;
  width: var(--intake);
  border-radius: inherit;
  background: var(--calfit-coral);
  transition: width 0.45s ease;
  transform-origin: left;
}
.feature-card {
  transition:
    opacity 0.7s,
    translate 0.7s,
    box-shadow 0.3s,
    transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px #2b18100b;
}
.feature-card.in-view .intake-track span {
  animation: fill-intake 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.feature-card.in-view .food-row img {
  animation: food-bob 4s ease-in-out infinite;
}
.feature-card.in-view .food-row img:nth-child(2) {
  animation-delay: -1s;
}
.feature-card.in-view .food-row img:nth-child(3) {
  animation-delay: -2s;
}
.feature-card.in-view .food-row img:nth-child(4) {
  animation-delay: -3s;
}
.feature-card.in-view .fasting-ring {
  animation: timer-breathe 5s ease-in-out infinite;
}
.food-result {
  transition:
    transform 0.2s,
    background 0.2s;
  border-radius: 10px;
}
.food-result:hover {
  transform: translateX(4px);
  background: var(--calfit-cream);
}
@keyframes fill-intake {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes food-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(3deg);
  }
}
@keyframes timer-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 9px #fff;
    transform: rotate(-8deg) scale(1);
  }
  50% {
    box-shadow: 0 0 0 15px #fff8ee;
    transform: rotate(-8deg) scale(1.025);
  }
}
@media (max-width: 640px) {
  .hero-buttons {
    gap: 8px;
  }
  .hero-buttons .button {
    font-size: 13px;
    padding: 10px 11px;
    gap: 4px;
    border-radius: 14px;
  }
  .hero-buttons .button svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
  }
}
@media (max-width: 360px) {
  .hero-buttons .button {
    font-size: 12px;
    padding: 10px 8px;
  }
  .hero-buttons {
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover {
    transform: none;
  }
  .feature-card.in-view .food-row img,
  .feature-card.in-view .fasting-ring,
  .feature-card.in-view .intake-track span {
    animation: none;
  }
  .intake-track span,
  .food-result {
    transition: none;
  }
}

img.store-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: none;
  border-radius: 4px;
}

/* Homepage refinements, 24 Sep 2026, from the award benchmark on
   claude.ai/artifact/V4pMFvHCpUcjLKHzAF4DcE. Styling only: no text moved. */

/* Store badges in the hero and final call to action, the site's own badge. */
.hero-buttons .store-badges,
.download-buttons .store-badges {
  justify-content: center;
}

/* Pip beside the scan, decorative. */
.hero-pip {
  position: absolute;
  left: -120px;
  bottom: 70px;
  width: 190px;
  height: auto;
  z-index: 2;
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 30px #2b18102a);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-pip {
    left: -70px;
    width: 150px;
  }
}
@media (max-width: 640px) {
  .hero-pip {
    left: -10px;
    bottom: 40px;
    width: 96px;
  }
}

/* A type scale with chapters: a bigger hero, three chapter headings, and
   the rest one step quieter so they stop competing. Desktop only; the
   phone sizes below 1100px are left as they were. */
@media (min-width: 1101px) {
  .hero-copy h1 {
    font-size: 88px;
  }
  h2 {
    font-size: 42px;
  }
  .hero-stage h2 {
    font-size: 60px;
  }
  .food-orbit h2 {
    font-size: 54px;
  }
  #features .section-heading h2,
  .pip .section-heading h2,
  .final-cta h2 {
    font-size: 66px;
  }
}

/* "Find what fits your day": shorter, sharp, and no hover hint on touch. */
@media (min-width: 1025px) {
  .food-orbit {
    height: 560px;
  }
  .orbit-0 { top: 36px; }
  .orbit-2 { top: 47px; }
  .orbit-3 { top: 234px; }
  .orbit-4 { top: 241px; }
  .orbit-5 { bottom: 68px; }
  .orbit-6 { bottom: 72px; }
}
.orbit-food img,
.salad,
.chocolate {
  filter: none;
}
@media (hover: none) {
  .orbit-hint {
    display: none;
  }
}

/* One dark chapter: Pip's section on the app's night ground, full bleed. */
.pip.section {
  background: #1c1310;
  box-shadow: 0 0 0 100vmax #1c1310;
  clip-path: inset(0 -100vmax);
  color: #fff8ee;
  padding-block: 96px;
}
.pip .section-heading p {
  color: #d9c6b8;
}

/* Tools, guides and blog as swipe rows on phones: every card and every word
   is still in the page, it just scrolls sideways instead of down. */
@media (max-width: 760px) {
  .home-resources .content-grid,
  .home-resources .home-tool-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding-bottom: 12px;
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
  .home-resources .content-grid > *,
  .home-resources .home-tool-grid > * {
    scroll-snap-align: start;
  }
}
@media (max-width: 640px) {
  .hero-copy h1 br {
    display: none;
  }
}

/* Fixes from the Mobbin audit, 24 Sep 2026. */

/* The store tiles carry their headline at the top of the art; anchor the
   crop there so it is never sliced in half. */
.fan-card img {
  object-position: top center;
}

/* The homepage FAQ sits outside .article, so it never got the muted answer
   text and the coral links every other FAQ on the site has. */
.faq .faq-body {
  color: var(--ink-soft, #6e5a4e);
  font-size: 17px;
  line-height: 1.8;
  padding: 0 35px 20px 0;
}
.faq .faq-body a:not(.store-badge):not(.btn) {
  color: var(--accent-deep, #c7442a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 44px tap targets for the menu button, wherever it is shown. */
@media (max-width: 1100px) {
  .site-header .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    line-height: 44px;
    text-align: center;
  }
}

/* Billing fine print at AA contrast (was #888, 3.5:1). */
.pricing-note {
  color: #6b5d56;
}
