:root {
  --pink: #ff9596;
  --yellow: #fddf11;
  --white: #ffffff;
  --header-height: 96px;
  --feature-stack-top: calc(var(--header-height) + 143px);
  --font-ui: "Nata Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Borel", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: var(--pink);
  background-attachment: fixed;
  background-image: url("/assets/grid-pattern.svg");
  background-position: top center;
  background-repeat: repeat;
  background-size: 1440px 1024px;
  color: var(--white);
  font-family: var(--font-ui);
}

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

.page {
  background-color: var(--pink);
  background-attachment: fixed;
  background-image: url("/assets/grid-pattern.svg");
  background-position: top center;
  background-repeat: repeat;
  background-size: 1440px 1024px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: var(--header-height);
  position: relative;
}

.grid-snakes {
  height: 100vh;
  inset: 0;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  z-index: 0;
}

.grid-snake {
  fill: none;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.46));
  opacity: 0.72;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-dasharray: 120 1050;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.grid-snake-1 {
  animation: snake-flow 7.2s linear infinite;
}

.grid-snake-2 {
  animation: snake-flow 8.6s linear -2.8s infinite;
}

.grid-snake-3 {
  animation: snake-flow 9.4s linear -5.7s infinite;
  stroke-dasharray: 100 1050;
}

.grid-snake-4 {
  animation: snake-flow 10.1s linear -1.4s infinite;
  stroke-dasharray: 90 1050;
}

.grid-snake-5 {
  animation: snake-flow 8.9s linear -4.6s infinite;
  stroke-dasharray: 110 1050;
}

.grid-snake-6 {
  animation: snake-flow 11.2s linear -7.1s infinite;
  stroke-dasharray: 105 1050;
}

.grid-snake-7 {
  animation: snake-flow 9.8s linear -3.2s infinite;
  stroke-dasharray: 85 1050;
}

.grid-snake-8 {
  animation: snake-flow 12.3s linear -8.3s infinite;
  stroke-dasharray: 115 1050;
}

.grid-snake-9 {
  animation: snake-flow 10.7s linear -6.2s infinite;
  stroke-dasharray: 95 1050;
}

@keyframes snake-flow {
  to {
    stroke-dashoffset: -1170;
  }
}

@keyframes currency-slide {
  to {
    transform: translateX(-50%);
  }
}

@keyframes why-title-slam {
  0% {
    opacity: 0;
    transform: translateY(-180px) scale(1.08) rotate(-8deg);
  }

  72% {
    opacity: 1;
    transform: translateY(10px) scale(0.98) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-2deg);
  }
}

@keyframes why-card-slam {
  0% {
    opacity: 0;
    transform: translateY(220px) scale(0.96) rotate(8deg);
  }

  72% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02) rotate(1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(2deg);
  }
}

@keyframes why-title-text-counter {
  0% {
    transform: rotate(8deg);
  }

  72% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(2deg);
  }
}

@keyframes calculating-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  align-items: center;
  backdrop-filter: blur(80px);
  background: rgba(255, 149, 150, 0.56);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 16px 24px;
  position: fixed;
  right: 0;
  top: 0;
  transition: height 180ms ease, padding 180ms ease;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  height: 64px;
  width: 248px;
  transition: height 180ms ease;
}

.brand img {
  display: block;
  height: 128px;
  margin-left: -32px;
  transition: height 180ms ease, width 180ms ease;
  width: 312px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 80px;
  margin-left: 20px;
}

.nav-links a {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.nav-links a[aria-current="page"] {
  background: #ff0000;
  color: var(--white);
  display: inline-flex;
  padding: 8px;
  transform: rotate(2deg);
  transform-origin: center center;
}

.nav-links a.active-about[aria-current="page"] {
  transform: rotate(-2deg);
}

.download {
  align-items: center;
  backdrop-filter: blur(0.5px);
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 0 16px var(--pink);
  color: var(--pink);
  display: inline-flex;
  font-family: var(--font-ui);
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.download-small {
  font-size: 22px;
  min-height: 50px;
  padding: 8px 24px;
  width: 240px;
  backdrop-filter: none;
  box-shadow: none;
}

.menu-toggle {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 50px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 50px;
  z-index: 22;
}

.menu-toggle span {
  background: var(--pink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 22px;
}

.menu-toggle-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  align-items: flex-start;
  background: var(--white);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: calc(100vh - var(--header-height));
  padding: 28px 24px;
  position: fixed;
  right: 0;
  top: var(--header-height);
  transform: translateX(100%);
  transition: transform 220ms ease;
  width: max(25vw, 240px);
  z-index: 21;
}

.mobile-menu-open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.mobile-menu a[aria-current="page"] {
  background: #ff0000;
  color: var(--white);
  display: inline-flex;
  padding: 8px;
  transform: rotate(2deg);
  transform-origin: center center;
}

.mobile-menu a.active-about[aria-current="page"] {
  transform: rotate(-2deg);
}

.mobile-download {
  align-items: center;
  background: var(--pink);
  border-radius: 32px;
  color: var(--white) !important;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 8px 24px;
 }

.hero {
  margin: 0 auto;
  min-height: calc(100vh - 96px);
  position: relative;
  width: min(100%, 1222px);
}

.hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  padding-top: clamp(38px, calc(7.2vh - 16px), 60px);
  position: relative;
  width: 655px;
  z-index: 2;
}

h1 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  gap: 0;
  line-height: 1.65;
  margin: 0;
  text-align: center;
}

h1 span {
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  display: block;
  padding: 8px 0 0;
  white-space: nowrap;
}

.hero-details {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: -5px;
  padding: 0;
  text-align: center;
}

.intro,
.subcopy,
.product-description {
  font-size: 32px;
  line-height: 1.25;
  margin: 0;
}

.intro {
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  margin-top: 1px;
  padding: 8px;
}

.product-name {
  background: rgba(255, 149, 150, 0.56);
  border-radius: 16px;
  box-shadow: 0 0 19px var(--pink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.48;
  margin: 20px 0 21px;
  padding: 20px 16px 0;
  text-align: center;
}

.product-description {
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  display: none;
  max-width: 610px;
  padding: 8px;
  text-align: center;
}

.subcopy {
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  margin-bottom: 0;
  padding: 8px;
}

.download-large {
  font-size: 32px;
  height: 79px;
  margin-top: 33px;
  padding: 8px 24px;
  width: 369px;
}

.phone-stage {
  height: 735px;
  left: 762px;
  position: absolute;
  top: 51px;
  width: 530px;
  z-index: 1;
}

.phone-wrap {
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
  height: 698px;
  left: 32px;
  position: absolute;
  top: 0;
  transform: scale(0.9);
  transform-origin: top left;
  width: 343px;
}

.phone-screen {
  border-radius: 26px;
  height: 668px;
  left: 17px;
  object-fit: cover;
  position: absolute;
  top: 15px;
  width: 309px;
}

.phone-frame {
  height: 698px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 343px;
}

.banana {
  background-image: url("/assets/namastebanana.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 417px;
  left: 187px;
  position: absolute;
  top: 245px;
  width: 273px;
  z-index: 2;
}

.response-section {
  backdrop-filter: blur(0.5px);
  align-items: center;
  background: var(--white);
  box-shadow: 0 0 32px var(--pink);
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
}

.bellyo-prompt {
  align-items: center;
  background: var(--pink);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: flex-end;
  margin: 0 auto 32px;
  height: 425px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 16px 24px;
  position: relative;
  width: min(100%, 1440px);
  z-index: 1;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.bellyo-prompt::-webkit-scrollbar {
  display: none;
}

.response-section-active .bellyo-prompt {
  gap: 8px;
  justify-content: flex-start;
}

.currency-support {
  align-items: center;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 16px 0;
  width: 100vw;
}

.currency-support h2 {
  color: var(--pink);
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.currency-marquee {
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 1) 9%,
    rgba(0, 0, 0, 1) 91%,
    rgba(0, 0, 0, 0.5) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 1) 9%,
    rgba(0, 0, 0, 1) 91%,
    rgba(0, 0, 0, 0.5) 100%
  );
  overflow: hidden;
  width: 100%;
}

.currency-track {
  animation: currency-slide 15.75s linear infinite;
  display: flex;
  gap: clamp(42px, 7vw, 92px);
  width: max-content;
}

.currency-track span {
  color: #000000;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.basics-section {
  background: transparent;
  color: var(--white);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 32px;
  position: relative;
  width: 100vw;
  z-index: 2;
}

.basics-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  width: min(100%, 1376px);
}

.basics-inner h2 {
  align-self: center;
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  padding: 8px 8px 0;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.basics-grid {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: repeat(4, 266px);
  justify-content: space-between;
  width: 100%;
}

.basics-grid span {
  align-items: center;
  background: var(--white);
  border-radius: 32px;
  color: var(--pink);
  display: inline-flex;
  font-size: 32px;
  font-weight: 600;
  height: 79px;
  justify-content: center;
  line-height: 1.2;
  padding: 8px 24px;
  white-space: nowrap;
  width: 266px;
}

.why-basics-section {
  background: transparent;
  color: #000000;
  overflow: hidden;
  padding: 0 32px 48px;
  position: relative;
  z-index: 2;
}

.why-basics-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  width: min(100%, 1024px);
}

.why-basics-inner h2 {
  align-items: center;
  background: var(--white);
  color: var(--pink);
  display: inline-flex;
  font-size: 32px;
  font-weight: 600;
  height: 79px;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  padding: 8px 24px;
  transform: rotate(-2deg);
  white-space: nowrap;
  width: 369px;
}

.why-basics-section:not(.why-basics-active) .why-basics-inner h2 {
  opacity: 0;
  transform: translateY(-180px) scale(1.08) rotate(-8deg);
}

.why-basics-section:not(.why-basics-active) .why-basics-card {
  opacity: 0;
  transform: translateY(220px) scale(0.96) rotate(8deg);
}

.why-basics-section.why-basics-active .why-basics-inner h2 {
  animation: why-title-slam 682ms cubic-bezier(0.2, 1.35, 0.28, 1) both;
}

.why-basics-inner h2 span {
  display: inline-block;
  transform: rotate(2deg);
}

.why-basics-section.why-basics-active .why-basics-inner h2 span {
  animation: why-title-text-counter 682ms cubic-bezier(0.2, 1.35, 0.28, 1) both;
}

.why-basics-card {
  align-items: center;
  background: var(--white);
  display: flex;
  min-height: 299px;
  justify-content: center;
  padding: 16px 24px;
  transform: rotate(2deg);
  width: 438px;
}

.why-basics-section.why-basics-active .why-basics-card {
  animation: why-card-slam 748ms cubic-bezier(0.2, 1.25, 0.28, 1) 132ms both;
}

.why-basics-card ul {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
  padding-left: 48px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.how-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  padding: 8px 24px 16px;
  position: relative;
  z-index: 2;
}

.how-section h2 {
  backdrop-filter: blur(0.5px);
  background: var(--white);
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  padding: 8px 8px 0;
  text-align: center;
  white-space: nowrap;
}

.how-demo {
  align-items: center;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 24px 16px;
  width: 100vw;
}

.how-card {
  align-items: center;
  background: var(--pink);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 471px;
  justify-content: space-between;
  padding: 24px;
  width: min(100%, 1147px);
}

.how-step {
  align-items: center;
  display: none;
  flex-direction: column;
  gap: 32px;
}

.how-step-active {
  display: flex;
}

.how-step h3 {
  color: #000000;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding-top: 8px;
  text-align: center;
}

.gender-grid,
.option-grid,
.goal-grid {
  display: grid;
  gap: 16px 12px;
  grid-template-columns: repeat(2, 171px);
  width: 358px;
}

.gender-grid button,
.option-grid button,
.goal-grid button {
  align-items: center;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  color: #000000;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  height: 80px;
  justify-content: center;
  padding: 16px;
}

.gender-grid button.selected,
.option-grid button.selected,
.goal-grid button.selected {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.86);
}

.age-input,
.number-input,
.currency-select {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  color: #000000;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  height: 80px;
  outline: 0;
  padding: 16px;
  text-align: center;
  width: 358px;
}

.currency-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #000000 50%),
    linear-gradient(135deg, #000000 50%, transparent 50%);
  background-position: calc(100% - 25px) 35px, calc(100% - 17px) 35px;
  background-repeat: no-repeat;
  background-size: 8px 8px, 8px 8px;
  font-size: 20px;
  height: 56px;
  padding: 8px 48px 8px 16px;
}

.unit-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  display: flex;
  padding: 8px;
  width: 264px;
}

.unit-toggle button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 32px;
  color: #000000;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  padding: 0 16px;
  width: 124px;
}

.unit-toggle button.selected {
  background: var(--white);
  box-shadow: 0 0 2px #ff0000;
}

.gender-wide {
  grid-column: 1 / -1;
}

.how-next {
  align-items: center;
  background: rgba(255, 210, 6, 0.56);
  border: 0;
  border-radius: 32px;
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  gap: 16px;
  height: 56px;
  justify-content: center;
  padding: 8px 24px;
  width: 263px;
}

.how-next[hidden] {
  display: none;
}

.how-next.ready {
  background: #ffd206;
}

.calculating-step {
  align-self: stretch;
  gap: 0;
  justify-content: center;
  min-height: 100%;
  position: relative;
}

.calculating-ring {
  animation: calculating-spin 1.35s linear infinite;
  border-radius: 999px;
  height: 250px;
  position: relative;
  width: 250px;
}

.calculating-ring::before,
.calculating-ring::after {
  border-radius: 999px;
  content: "";
  position: absolute;
}

.calculating-ring::before {
  border: 20px solid rgba(255, 255, 255, 0.2);
  inset: 0;
}

.calculating-ring::after {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom-color: transparent;
  border-left-color: transparent;
  box-shadow: inset 0 0 0 19px transparent, inset 0 0 0 20px rgba(255, 255, 255, 0.78);
  inset: 1px;
}

.calculating-step p {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  left: 50%;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
}

.recommended-step {
  gap: 32px;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
}

.recommended-values {
  color: #000000;
  font-size: clamp(24px, 2.45vw, 32px);
  font-weight: 400;
  line-height: 1.72;
  max-width: min(100%, 520px);
  min-width: min(100%, 250px);
}

.recommended-values p {
  margin: 0;
  white-space: normal;
}

.advance-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 700;
  gap: 16px;
  justify-content: center;
  padding: 0 16px;
  width: 390px;
}

.advance-button span[aria-hidden="true"] {
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  display: block;
  height: 14px;
  line-height: 0;
  margin-top: 5px;
  overflow: hidden;
  text-indent: -999px;
  transform: rotate(45deg);
  width: 14px;
}

.download-step {
  gap: 12px;
  justify-content: center;
  min-height: 100%;
}

.download-logo-frame {
  align-items: center;
  display: flex;
  height: 180px;
  justify-content: center;
  overflow: visible;
  width: 562px;
}

.download-logo-frame img {
  display: block;
  height: auto;
  width: 562px;
}

.download-final {
  box-shadow: 0 0 16px var(--pink);
  font-size: 32px;
  height: 79px;
  padding: 8px 24px;
  width: 320px;
}

.how-progress {
  align-items: center;
  display: flex;
  gap: 18px;
  height: 24px;
  justify-content: center;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.how-progress span {
  background: #eeeeee;
  border-radius: 999px;
  display: block;
  height: 18px;
  width: 18px;
}

.how-progress span.entered {
  background: #ff6868;
  opacity: 0.5;
}

.how-progress .active {
  background: #ff6868;
  opacity: 1;
}

.how-progress span.entered,
.how-progress span.active {
  cursor: pointer;
}

.how-progress-hidden {
  opacity: 0;
  visibility: hidden;
}

.faq-section {
  align-items: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px;
  position: relative;
  z-index: 2;
}

.faq-section h2 {
  align-items: center;
  background: var(--white);
  color: var(--pink);
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  height: 79px;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  padding: 8px 24px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.faq-section h2 span {
  display: inline-block;
  transform: rotate(2deg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 1146px);
}

.faq-item {
  background: var(--white);
  color: #000000;
  padding: 16px 24px;
}

.faq-item summary {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  gap: 12px;
  justify-content: space-between;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::before {
  content: "•";
  flex: 0 0 auto;
}

.faq-item summary::after {
  border-bottom: 3px solid var(--pink);
  border-right: 3px solid var(--pink);
  content: "";
  flex: 0 0 auto;
  height: 12px;
  margin-top: 5px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  width: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-answer {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  padding: 14px 32px 4px;
}

.faq-answer p {
  margin: 0 0 10px;
}

.about-page {
  min-height: 100vh;
  padding-bottom: 64px;
}

.about-features {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 24px 0;
  position: relative;
  z-index: 2;
}

.about-features h1 {
  align-items: center;
  background: var(--white);
  color: var(--pink);
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  height: 79px;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  padding: 8px 24px;
  position: relative;
  transform: rotate(2deg);
  white-space: nowrap;
  z-index: 10;
}

.about-features h1 span {
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  display: inline-block;
  padding: 0;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.stack-cards {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: 100%;
}

.feature-card-pin {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.feature-card {
  align-items: center;
  background: var(--white);
  border-radius: 32px;
  display: flex;
  gap: 32px;
  height: 410px;
  justify-content: center;
  max-width: 1146px;
  overflow: hidden;
  padding: 16px 32px 0;
  position: relative;
  margin-bottom: 0;
  transform: none;
  transform-origin: center top;
  width: min(100%, 1146px);
}

.feature-copy {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.feature-copy h2 {
  color: #ff7375;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.feature-copy p {
  color: #000000;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: justify;
  width: 100%;
}

.feature-copy .bellyo-word {
  color: #fddf11;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.feature-phone {
  --phone-base-height: 393;
  --phone-base-width: 436;
  align-self: flex-end;
  aspect-ratio: var(--phone-base-width) / var(--phone-base-height);
  flex: 0 0 auto;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 436px;
}

.feature-phone-crop {
  border-radius: 80px 80px 0 0;
}

.feature-phone img {
  display: block;
  height: auto;
  max-width: none;
  position: absolute;
  width: 100%;
}

.feature-phone-nutrition {
  --phone-base-width: 376;
  width: 376px;
}

.feature-phone-nutrition img {
  height: 207.11%;
  left: -0.13%;
  top: -28.79%;
  width: 100.03%;
}

.feature-phone-ai img {
  height: 240.2%;
  left: 0.1%;
  top: -139.95%;
  width: 100.05%;
}

.feature-phone-simple img {
  height: 204.09%;
  left: 0.07%;
  top: -4.62%;
  width: 100%;
}

.feature-phone-budget img {
  height: 240.2%;
  left: -0.1%;
  top: -23.34%;
  width: 100.05%;
}

.feature-phone-currency img {
  height: 239.36%;
  left: 0.08%;
  top: -41.54%;
  width: 99.72%;
}

.feature-phone-entry img {
  height: 245.8%;
  left: -0.06%;
  top: -50.15%;
  width: 100.01%;
}

.about-story {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding: 96px 32px 64px;
  position: relative;
  z-index: 2;
}

.about-story-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.about-story h2 {
  backdrop-filter: blur(0.5px);
  background: rgba(255, 149, 150, 0.56);
  box-shadow: 0 0 32px var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 8px 32px 0;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.about-story-card {
  background: var(--white);
  border-radius: 32px;
  color: #000000;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 1152px;
  padding: 32px;
  text-align: center;
  width: min(100%, 1152px);
}

.about-story-card p {
  margin: 0 0 24px;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-story-card ul {
  display: inline-block;
  margin: 0 0 24px;
  padding-left: 48px;
  text-align: left;
}

.about-story-card li {
  margin: 0;
}

.pink-text {
  color: var(--pink);
}

.gold-text {
  color: #dcb400;
}

.connect-page {
  min-height: 100vh;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 64px;
}

.legal-section {
  color: #000000;
  margin: 0 auto;
  max-width: 1040px;
  padding: 48px 24px 96px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.legal-document {
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 0 32px rgba(255, 149, 150, 0.42);
  padding: clamp(24px, 5vw, 56px);
}

.legal-document h1 {
  color: var(--pink);
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 24px;
  text-align: left;
}

.legal-document h1 span {
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  display: inline;
  padding: 0;
  white-space: normal;
}

.legal-intro,
.legal-document p,
.legal-document li {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.legal-intro {
  margin: 0 0 32px;
}

.legal-document section {
  border-top: 2px solid rgba(255, 149, 150, 0.22);
  padding-top: 24px;
}

.legal-document section + section {
  margin-top: 24px;
}

.legal-document h2 {
  color: var(--pink);
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

.legal-document h3 {
  color: #000000;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 20px 0 8px;
}

.legal-document p {
  margin: 0 0 12px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 8px 0 16px;
  padding-left: 28px;
}

.legal-document li {
  margin: 0 0 6px;
}

.connect-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: 32px 24px 96px;
  position: relative;
  z-index: 2;
}

.connect-section h1 {
  align-items: center;
  background: var(--white);
  color: var(--pink);
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 600;
  height: 79px;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  padding: 8px 24px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.connect-section h1 span {
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  display: inline-block;
  padding: 0;
  transform: rotate(2deg);
}

.connect-email {
  align-items: center;
  background: var(--white);
  color: #000000;
  display: flex;
  font-family: var(--font-ui);
  font-size: 40px;
  font-weight: 600;
  gap: 48px;
  justify-content: center;
  line-height: 1.2;
  padding: 16px 24px;
  width: min(100%, 649px);
}

.connect-arrow {
  display: inline-flex;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-2px);
}

.site-footer {
  background: var(--white);
  color: var(--pink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.footer-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  padding: 16px 24px 36px;
  text-align: center;
  width: min(100%, 1200px);
}

.footer-copyright {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

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

.footer-links a,
.footer-top {
  color: var(--pink);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-links a:hover,
.footer-top:hover {
  text-decoration: underline;
}

.footer-top {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.footer-wave {
  height: 200px;
  margin-top: -32px;
  overflow: hidden;
}

.footer-wave-track {
  margin-top: 0;
}

.footer-wave-segment {
  background: var(--pink);
  margin-top: -2px;
  transition: transform 0.1s ease;
  will-change: transform;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.prompt-chips {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  order: 2;
  transition: opacity 320ms ease, transform 320ms ease;
}

.response-section-active .prompt-chips {
  animation: prompt-chips-out 320ms ease 1.85s both;
  bottom: 120px;
  position: absolute;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip-row span {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 32px;
  color: #000000;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 8px;
  text-align: center;
  white-space: nowrap;
}

.prompt-input {
  align-items: center;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  display: flex;
  gap: 8px;
  height: 56px;
  order: 3;
  padding: 16px;
  flex-shrink: 0;
  width: 100%;
}

.response-section-active .prompt-input {
  bottom: 16px;
  margin-top: auto;
  position: sticky;
  width: 100%;
  z-index: 4;
}

.prompt-input input {
  background: transparent;
  border: 0;
  color: #000000;
  flex: 1;
  font: 400 16px/1.2 var(--font-ui);
  min-width: 0;
  outline: 0;
  transition: opacity 280ms ease;
}

.response-section-active .prompt-input input {
  animation: prompt-text-out 280ms ease 1.85s both;
}

.prompt-input button {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 32px;
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 8px;
  width: 32px;
}

.prompt-input img {
  display: block;
  height: 14px;
  width: 12.5px;
}

.response-section-active .prompt-input button {
  animation: arrow-click-fade 320ms ease 1.85s both;
}

.sent-message {
  background: var(--pink);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px 22px 4px 22px;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
  color: var(--white);
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.25;
  opacity: 0;
  order: 1;
  padding: 14px 18px;
  position: absolute;
  right: 24px;
  top: 24px;
  transform: translateY(18px);
  z-index: 3;
}

.response-section-active .sent-message {
  align-self: flex-end;
  margin-bottom: 0;
  position: static;
  transform: translateY(64px);
}

.response-section-active .sent-message {
  animation: sent-message-in 420ms ease 1.8s both;
}

.response-row {
  align-self: flex-start;
  display: none;
  flex: 0 0 auto;
  margin-bottom: 32px;
  max-width: min(620px, calc(100% - 96px));
  opacity: 0;
  order: 2;
  padding-left: 42px;
  position: relative;
  transform: translateX(-24px);
  width: 100%;
  z-index: 3;
}

.response-section-active .response-row {
  animation: response-message-in 360ms ease 2.25s both;
  display: flex;
}

.bellyo-avatar {
  bottom: 0;
  display: block;
  height: 34px;
  left: 0;
  position: absolute;
  width: 34px;
  z-index: 4;
}

.response-message {
  background: var(--white);
  border: 1px solid rgba(255, 149, 150, 0.42);
  border-radius: 24px 24px 24px 4px;
  box-shadow: 0 0 28px rgba(255, 149, 150, 0.28);
  color: #000000;
  height: auto;
  margin: 0;
  opacity: 0;
  overflow: visible;
  padding: 18px 20px;
  width: 100%;
}

.response-section-active .response-message {
  animation: response-bubble-in 220ms ease 2.25s both;
}

.response-text {
  font: 600 18px/1.4 var(--font-ui);
  margin: 0;
  white-space: pre-wrap;
}

.response-text.text-edge-fade {
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 1) calc(var(--text-fade-start, 0px) - 1px),
    rgba(0, 0, 0, 0.5) var(--text-fade-start, 0px),
    rgba(0, 0, 0, 0.5) calc(var(--text-fade-start, 0px) + 28px),
    rgba(0, 0, 0, 1) calc(var(--text-fade-start, 0px) + 64px)
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 1) calc(var(--text-fade-start, 0px) - 1px),
    rgba(0, 0, 0, 0.5) var(--text-fade-start, 0px),
    rgba(0, 0, 0, 0.5) calc(var(--text-fade-start, 0px) + 28px),
    rgba(0, 0, 0, 1) calc(var(--text-fade-start, 0px) + 64px)
  );
}

.animated-cursor {
  background: url("/assets/cursor.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
  height: 20px;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  z-index: 5;
}

.response-section-active .animated-cursor {
  animation: cursor-click-path 2.35s ease-in-out both;
}

@keyframes cursor-click-path {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
  }
  12% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: translate(-16px, 357px) scale(1);
  }
  82% {
    opacity: 1;
    transform: translate(-16px, 357px) scale(0.82);
  }
  92% {
    opacity: 1;
    transform: translate(-16px, 357px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-16px, 357px) scale(1);
  }
}

@keyframes prompt-chips-out {
  to {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }
}

@keyframes prompt-text-out {
  to {
    opacity: 0;
  }
}

@keyframes arrow-click-fade {
  50%,
  100% {
    opacity: 0.5;
  }
}

@keyframes sent-message-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes response-message-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes response-bubble-in {
  to {
    opacity: 1;
  }
}

.sparkle {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1;
  position: absolute;
  text-shadow: 0 0 6px rgba(253, 223, 17, 0.45);
  z-index: 3;
}

.sparkle-one {
  font-size: 28px;
  left: 258px;
  top: 264px;
}

.sparkle-two {
  font-size: 20px;
  left: 392px;
  top: 244px;
}

.sparkle-three {
  left: 410px;
  top: 293px;
}

.sparkle-four {
  font-size: 18px;
  left: 432px;
  top: 272px;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .nav-links {
    gap: clamp(48px, 5.55vw, 80px);
  }

  .hero-copy {
    margin-left: 0;
    transform: scale(clamp(0.88, calc(0.88 + (100vw - 1200px) / 1818), 0.99));
    transform-origin: top left;
  }

  .phone-stage {
    left: clamp(700px, 59vw, 762px);
    transform: scale(clamp(0.84, calc(0.84 + (100vw - 1200px) / 1333), 0.99));
    transform-origin: top left;
  }
}

@media (max-width: 1200px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-links {
    display: none;
  }

  .download-small {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow-x: hidden;
    overflow-y: visible;
    padding: clamp(42px, 6vw, 72px) 24px 64px;
    width: auto;
  }

  .hero-copy {
    display: contents;
  }

  h1 {
    align-self: center;
    font-size: clamp(42px, 5vw, 54px);
    line-height: 1.55;
    order: 1;
    text-align: center;
  }

  .phone-stage {
    align-self: center;
    height: 560px;
    left: auto;
    margin: 34px 0 8px;
    order: 4;
    position: relative;
    top: auto;
    translate: 14px 0;
    transform: scale(0.76);
    transform-origin: top center;
    width: 343px;
  }

  .phone-wrap {
    left: 0;
  }

  .banana {
    left: 155px;
  }

  .hero-details {
    align-self: center;
    display: contents;
    margin-top: 0;
    max-width: min(655px, 100%);
  }

  .intro {
    align-self: center;
    margin-top: -48px;
    order: 5;
  }

  .product-name {
    align-self: center;
    margin-top: 16px;
    order: 6;
  }

  .product-description {
    align-self: center;
    display: block;
    font-size: clamp(24px, 3.2vw, 30px);
    margin-top: 16px;
    max-width: min(655px, 100%);
    order: 7;
    transform: translateY(-24px);
  }

  .subcopy {
    align-self: center;
    order: 2;
  }

  .intro,
  .subcopy {
    font-size: clamp(27px, 3.5vw, 32px);
  }

  .download-large {
    align-self: center;
    font-size: clamp(28px, 3.5vw, 32px);
    order: 3;
  }

  .bellyo-prompt {
    height: 425px;
  }

  .basics-grid {
    grid-template-columns: repeat(2, 266px);
    justify-content: center;
  }

  .why-basics-section {
    padding-inline: 24px;
  }

  .about-features {
    padding: 32px 24px 0;
  }

  .about-features h1 {
    order: initial;
  }

  .connect-section h1 {
    order: initial;
  }

  .feature-card {
    gap: 28px;
    padding-inline: 24px;
  }

  .feature-copy h2 {
    font-size: 28px;
  }

  .feature-copy p {
    font-size: 20px;
  }

  .feature-phone,
  .feature-phone-nutrition {
    width: min(38vw, calc(var(--phone-base-width) * 1px));
  }

  .about-story-card {
    font-size: 26px;
  }

  .connect-email {
    font-size: 34px;
  }

}

@media (max-width: 820px) {
  :root {
    --header-height: 84px;
    --feature-stack-top: calc(var(--header-height) + 132px);
  }

  .page {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .site-header {
    gap: 16px;
    height: var(--header-height);
    min-height: 84px;
    padding: 12px 18px;
  }

  .brand {
    height: 52px;
    width: 160px;
  }

  .brand img {
    height: 94px;
    margin-left: -24px;
    width: 230px;
  }

  .nav-links {
    display: none;
  }

  .download-small {
    display: none;
    font-size: 18px;
    min-height: 42px;
    width: auto;
  }

  .hero {
    padding: 28px 18px 42px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  h1 {
    font-size: clamp(32px, 7vw, 40px);
    line-height: 1.55;
  }

  h1 span {
    max-width: 100%;
    white-space: normal;
  }

  .hero-details {
    max-width: 100%;
  }

  .intro,
  .subcopy,
  .product-description {
    font-size: clamp(22px, 5.6vw, 32px);
    max-width: 100%;
  }

  .product-name {
    font-size: clamp(32px, 8vw, 40px);
    margin-block: 12px 14px;
  }

  .download-large {
    font-size: 26px;
    height: 66px;
    margin-top: 18px;
    width: 316px;
  }

  .phone-stage {
    align-self: center;
    height: 460px;
    left: auto;
    margin: 34px auto 0;
    position: relative;
    top: auto;
    transform: scale(0.62);
    transform-origin: top center;
  }

  .response-section {
    padding-inline: 18px;
  }

  .footer-content {
    align-items: center;
    flex-direction: column;
    padding: 28px 18px 56px;
    text-align: center;
  }

  .footer-links {
    gap: 14px;
  }

  .bellyo-prompt {
    height: 425px;
    padding-inline: 16px;
  }


  .chip-row span,
  .prompt-input input {
    font-size: 14px;
  }

  .basics-section {
    padding: 28px 18px;
  }

  .basics-inner h2 {
    font-size: clamp(32px, 7vw, 40px);
    white-space: normal;
  }

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

  .basics-grid span {
    font-size: 24px;
    height: 66px;
    width: 100%;
  }

  .why-basics-section {
    padding: 0 18px 42px;
  }

  .why-basics-inner h2 {
    font-size: 26px;
    height: 66px;
    width: 316px;
  }

  .why-basics-card {
    min-height: 260px;
    width: min(100%, 438px);
  }

  .why-basics-card ul {
    font-size: 26px;
    padding-left: 36px;
  }

  .how-section h2 {
    font-size: clamp(32px, 7vw, 40px);
    white-space: normal;
  }

  .how-demo {
    padding-inline: 18px;
  }

  .how-card {
    width: min(100%, 920px);
  }

  .faq-section {
    gap: 24px;
    padding: 42px 18px;
  }

  .faq-section h2 {
    font-size: 28px;
    height: 68px;
  }

  .faq-item {
    padding: 14px 18px;
  }

  .faq-item summary {
    font-size: 19px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 12px 28px 2px;
  }

  .about-features {
    padding: 32px 18px 0;
  }

  .about-features h1 {
    font-size: 28px;
    height: 68px;
  }

  .stack-cards {
    gap: 24px;
  }

  .feature-card {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    height: auto;
    min-height: 520px;
    padding: 24px 18px 0;
  }

  .feature-card-left .feature-phone {
    order: 2;
  }

  .feature-card-left .feature-copy {
    order: 1;
  }

  .feature-copy {
    gap: 16px;
  }

  .feature-copy h2 {
    font-size: 24px;
  }

  .feature-copy p {
    font-size: 16px;
    text-align: left;
  }

  .feature-copy .bellyo-word {
    font-size: 34px;
  }

  .feature-phone,
  .feature-phone-nutrition {
    align-self: center;
    width: min(100%, 330px, calc(var(--phone-base-width) * 1px));
  }

  .feature-phone-crop {
    border-radius: 60px 60px 0 0;
  }

  .about-story {
    gap: 96px;
    padding: 90px 18px 56px;
  }

  .about-story h2 {
    font-size: clamp(32px, 7vw, 40px);
    padding-inline: 16px;
    white-space: normal;
  }

  .about-story-card {
    border-radius: 24px;
    font-size: 20px;
    padding: 24px 18px;
  }

  .about-story-card ul {
    padding-left: 28px;
  }

  .connect-section {
    padding: 32px 18px 72px;
  }

  .connect-section h1 {
    font-size: 28px;
    height: 68px;
    order: initial;
  }

  .connect-email {
    font-size: clamp(24px, 5vw, 34px);
    gap: 24px;
    justify-content: space-between;
  }

  .connect-arrow {
    font-size: 38px;
  }

}

@media (max-width: 570px) {
  .hero {
    align-items: center;
    padding-inline: 18px;
  }

  h1,
  .hero-details,
  .download-large,
  .phone-stage {
    align-self: center;
  }

  .phone-stage {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 430px) {
  :root {
    --feature-stack-top: calc(var(--header-height) + 114px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 136px;
  }

  .brand img {
    height: 80px;
    width: 196px;
  }

  .phone-stage {
    height: 572px;
    margin-left: auto;
    margin-right: auto;
    order: 4;
    transform: scale(0.84);
  }

  .intro {
    margin-top: 0;
    order: 5;
  }

  .product-name {
    order: 6;
  }

  .product-description {
    order: 7;
  }

  .prompt-chips {
    align-self: flex-start;
    margin-left: 4px;
    width: max-content;
  }

  .chip-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, max-content);
    width: max-content;
  }

  .chip-row:nth-child(2) {
    grid-template-columns: repeat(2, max-content);
  }

  .response-text {
    font-size: 12px;
  }

  .bellyo-prompt,
  .bellyo-prompt input,
  .bellyo-prompt button,
  .chip-row span,
  .sent-message {
    font-size: 12px;
  }

  .currency-support h2,
  .currency-track span {
    font-size: 14px;
  }

  .basics-section {
    padding: 24px 16px;
  }

  .basics-inner {
    gap: 24px;
  }

  .basics-inner h2 {
    font-size: 30px;
  }

  .basics-grid span {
    font-size: 18px;
    height: 54px;
    padding-inline: 12px;
  }

  .why-basics-section {
    padding-inline: 16px;
  }

  .why-basics-inner {
    gap: 24px;
  }

  .why-basics-inner h2 {
    font-size: 20px;
    height: 54px;
    width: 282px;
  }

  .why-basics-card {
    min-height: 220px;
    padding: 16px 18px;
  }

  .why-basics-card ul {
    font-size: 20px;
    padding-left: 28px;
  }

  .how-section {
    padding-inline: 16px;
  }

  .how-section h2 {
    font-size: 30px;
  }

  .faq-section {
    padding: 32px 16px;
  }

  .faq-section h2 {
    font-size: 24px;
    height: 58px;
    padding-inline: 20px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 12px 14px;
  }

  .faq-item summary {
    font-size: 16px;
    gap: 8px;
  }

  .faq-item summary::after {
    height: 10px;
    width: 10px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 10px 20px 0;
  }

  .about-features {
    gap: 24px;
    padding: 32px 16px 0;
  }

  .about-features h1 {
    font-size: 24px;
    height: 58px;
    padding-inline: 20px;
  }

  .feature-card {
    border-radius: 24px;
    min-height: 500px;
    padding: 20px 14px 0;
  }

  .feature-copy h2 {
    font-size: 20px;
  }

  .feature-copy p {
    font-size: 13px;
  }

  .feature-copy .bellyo-word {
    font-size: 28px;
  }

  .feature-phone,
  .feature-phone-nutrition {
    width: min(100%, 300px, calc(var(--phone-base-width) * 1px));
  }

  .about-story {
    gap: 96px;
    padding: 80px 16px 48px;
  }

  .about-story h2 {
    font-size: 30px;
  }

  .about-story-card {
    font-size: 15px;
    padding: 20px 14px;
  }

  .about-story-card p,
  .about-story-card ul {
    margin-bottom: 16px;
  }

  .connect-section {
    padding: 32px 16px 56px;
  }

  .connect-section h1 {
    font-size: 24px;
    height: 58px;
    order: initial;
    padding-inline: 20px;
  }

  .connect-email {
    font-size: 18px;
    gap: 14px;
    padding: 14px 16px;
  }

  .connect-arrow {
    font-size: 30px;
  }

  .how-demo {
    padding: 32px 16px 16px;
  }

  .how-card {
    border-radius: 24px;
    padding: 20px 16px;
  }

  .how-card h3 {
    font-size: 28px;
  }

  .gender-grid,
  .option-grid,
  .goal-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .gender-grid button,
  .option-grid button,
  .goal-grid button {
    font-size: 12px;
    height: 66px;
  }

  .how-next {
    font-size: 16px;
    height: 50px;
    width: min(263px, 100%);
  }

  .recommended-values {
    font-size: 20px;
    line-height: 1.55;
    max-width: 100%;
  }

  .advance-button {
    font-size: 24px;
    width: min(100%, 300px);
  }

  .download-final {
    font-size: 24px;
    height: 66px;
    width: 280px;
  }

  .download-logo-frame {
    height: auto;
    max-width: 100%;
    width: min(360px, 82vw);
  }

  .download-logo-frame img {
    width: min(360px, 82vw);
  }

  .age-input,
  .number-input,
  .currency-select {
    height: 66px;
    width: 100%;
  }

  .currency-select {
    background-position: calc(100% - 24px) 28px, calc(100% - 17px) 28px;
    font-size: 16px;
    height: 54px;
  }

  .unit-toggle {
    width: 232px;
  }

  .unit-toggle button {
    font-size: 24px;
    width: 108px;
  }

  .how-progress {
    gap: 14px;
  }

  .how-progress span {
    height: 16px;
    width: 16px;
  }

  .response-row {
    max-width: calc(100% - 32px);
  }
}
