.home-content-section {
  width: min(100%, 92rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4.75rem);
}

.home-section-heading h2,
.home-product-intro h2,
.home-category-heading h2,
.home-quality-copy h2,
.home-final-copy h2 {
  margin: 0;
  font-family: var(--font-heading), "DM Sans", sans-serif;
  font-weight: 760;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.home-final-search {
  position: relative;
  display: grid;
  width: min(100%, 38rem);
  min-height: 4.1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid rgba(23, 51, 46, 0.16);
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-emphasized);
}

.home-final-search-shell {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.home-final-search-shell .home-final-search {
  width: 100%;
}

.home-final-search-suggestions {
  top: auto;
  bottom: calc(100% + 0.38rem);
}

.home-final-search:focus-within {
  transform: translateY(-1px);
}

.home-final-search > svg {
  width: 1.18rem;
  height: 1.18rem;
  margin-left: 1.15rem;
  color: var(--home-accent);
}

.home-final-search input {
  min-width: 0;
  min-height: 4rem;
  padding: 0.8rem 1rem;
  border: 0;
  outline: 0;
  color: var(--home-ink);
  background: transparent;
  font-size: 1rem;
}

.home-final-search input::placeholder {
  color: var(--home-muted);
}

.home-final-search button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-right: 0.3rem;
  padding-inline: 1.25rem;
  border: 0;
  border-radius: var(--home-radius-control);
  color: #fff;
  background: var(--home-action);
  font-size: 0.92rem;
  font-weight: 780;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-emphasized);
}

.home-final-search button:hover {
  background: var(--home-action-strong);
  transform: translateY(-1px);
}

.home-final-search button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.home-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.62rem;
  color: var(--home-ink);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.home-text-link svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform var(--motion-fast) var(--ease-emphasized);
}

.home-text-link:hover svg {
  transform: translateX(0.28rem);
}

.home-section-heading,
.home-category-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: 2rem clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.home-section-heading > div,
.home-category-heading > div,
.home-product-intro,
.home-quality-copy,
.home-final-copy {
  display: grid;
  gap: 1.25rem;
}

.home-section-heading h2,
.home-category-heading h2,
.home-product-intro h2,
.home-quality-copy h2,
.home-final-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: 0.96;
}

.home-section-heading > p,
.home-product-intro > p:last-child,
.home-quality-copy > p,
.home-product-modes p {
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.home-recipes-section {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  padding-block: clamp(5rem, 10vw, 9.5rem);
}

.home-recipe-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(18rem, 0.66fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-recipe-story {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--home-radius-media);
  color: #fff;
  background: var(--home-media-placeholder);
  text-decoration: none;
}

.home-recipe-story.is-lead {
  grid-row: span 2;
}

.home-recipe-story-image {
  object-fit: cover;
  transition: transform 700ms var(--ease-emphasized);
}

.home-recipe-story-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(10, 25, 21, 0.16) 58%,
    rgba(10, 25, 21, 0.88) 100%
  );
  transition: background-color var(--motion-base) ease;
}

.home-recipe-story-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.home-recipe-story-text {
  display: grid;
  gap: 0.55rem;
}

.home-recipe-story-text strong {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.5vw, 2.65rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.home-recipe-story:not(.is-lead) .home-recipe-story-text strong {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.home-recipe-story-text > span {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-recipe-story-arrow,
.home-category-arrow {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--home-radius-control);
  transition:
    color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-emphasized);
}

.home-recipe-story-arrow svg,
.home-category-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-recipe-story:hover .home-recipe-story-image,
.home-knowledge-item:hover img {
  transform: scale(1.035);
}

.home-recipe-story:hover .home-recipe-story-arrow {
  color: var(--home-ink);
  background: #fff;
  transform: translateX(0.2rem);
}

.home-product-section {
  position: relative;
  overflow: hidden;
}

.home-product-intro {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.65fr);
  gap: 1.25rem clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.home-product-intro h2 {
  max-width: 13ch;
  color: var(--home-ink);
}

.home-product-intro > p:last-child {
  color: var(--home-muted);
}

.home-product-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 100rem);
  margin: clamp(3rem, 7vw, 6.5rem) auto 0;
  overflow: hidden;
  contain: layout paint;
}

.home-dashboard-frame {
  position: absolute;
  top: 7%;
  left: 4%;
  width: min(77%, 70rem);
  overflow: hidden;
  border: 1px solid rgba(23, 51, 46, 0.12);
  border-radius: var(--home-radius-media);
  color: #1b302c;
  background: #ffffff;
  transform: perspective(100rem) rotateX(2deg) rotateY(-3deg);
  transform-origin: center;
}

.home-dashboard-topbar {
  display: grid;
  min-height: 3.8rem;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-inline: 1.3rem;
  border-bottom: 1px solid #e3ebe6;
  background: #ffffff;
  font-size: 0.76rem;
  font-weight: 690;
}

.home-dashboard-topbar > :nth-child(2) {
  color: #5e6f69;
}

.home-preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.home-preview-brand > span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--home-radius-control);
  color: #fff;
  background: #347f75;
  font-size: 0.8rem;
}

.home-preview-avatar {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 820;
}

.home-dashboard-layout {
  display: grid;
  min-height: 34rem;
  grid-template-columns: 11rem minmax(0, 1fr);
  background: #f7faf8;
}

.home-dashboard-nav {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 1.7rem 1rem;
  border-right: 1px solid #e3ebe6;
}

.home-dashboard-nav span {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.7rem;
  padding-inline: 0.7rem;
  border-radius: var(--home-radius-control);
  color: #5e6f69;
  font-size: 0.74rem;
  font-weight: 690;
}

.home-dashboard-nav span.is-active {
  color: #245f57;
  background: #dfeee9;
}

.home-dashboard-nav svg {
  width: 0.95rem;
  height: 0.95rem;
}

.home-dashboard-main {
  min-width: 0;
  padding: clamp(1.4rem, 2.6vw, 2.25rem);
  background: #ffffff;
}

.home-dashboard-heading {
  display: block;
  margin-bottom: 1.35rem;
}

.home-dashboard-heading > div {
  display: grid;
  gap: 0.35rem;
}

.home-dashboard-heading > div > span,
.home-dashboard-label {
  color: #356f66;
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-dashboard-heading > div > strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.045em;
}

.home-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 0.78rem);
}

.home-week-day {
  display: grid;
  min-width: 0;
  min-height: 12.9rem;
  align-content: start;
  gap: 0.34rem;
  padding: 0;
}

.home-week-day-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  padding-inline: 0.08rem;
}

.home-week-day-heading span {
  color: #5f706a;
  font-size: 0.64rem;
  font-weight: 790;
}

.home-week-day-heading strong {
  color: #819099;
  font-size: 0.61rem;
  font-weight: 690;
}

.home-week-meal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.24;
  overflow: hidden;
  border-radius: var(--home-radius-control);
  background: #e8eff2;
}

.home-week-meal-image img {
  object-fit: cover;
}

.home-week-day.is-today .home-week-day-heading span,
.home-week-day.is-today .home-week-day-heading strong {
  color: #2f6f94;
}

.home-week-slot {
  margin-top: 0.18rem;
  overflow: hidden;
  color: #809099;
  font-size: 0.5rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-week-meal-title {
  overflow: hidden;
  color: #213842;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.24;
  text-overflow: ellipsis;
}

.home-dashboard-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.7fr);
  gap: 1.5rem 2.6rem;
  padding-top: 1.45rem;
}

.home-dashboard-bottom > div:first-child {
  display: grid;
  gap: 0.65rem;
}

.home-dashboard-bottom strong {
  font-size: 0.86rem;
}

.home-dashboard-bottom small {
  color: #74848c;
  font-size: 0.58rem;
  font-weight: 620;
}

.home-dashboard-progress {
  height: 0.38rem;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #e5ece7;
}

.home-dashboard-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3c877d, #75aa80);
  animation: home-progress-breathe 4.8s ease-in-out infinite;
}

.home-dashboard-checks {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.home-dashboard-checks span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #637780;
  font-size: 0.68rem;
}

.home-dashboard-checks svg {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0.15rem;
  border-radius: var(--radius-pill);
  color: #fff;
  stroke-width: 3;
}

.home-phone-shell {
  position: absolute;
  z-index: 3;
}

.home-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.05rem 0.9rem;
}

.home-phone-top .home-preview-brand {
  font-size: 0.78rem;
}

.home-phone-top .home-preview-brand > span {
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.65rem;
}

.home-phone-top .home-preview-avatar {
  width: 1.55rem;
  height: 1.55rem;
  font-size: 0.62rem;
}

.home-phone-greeting {
  display: grid;
  gap: 0.25rem;
  padding: 0.3rem 1.05rem 1rem;
}

.home-phone-greeting span {
  color: #5f706a;
  font-size: 0.65rem;
}

.home-phone-greeting strong {
  max-width: 12ch;
  font-size: 1.18rem;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.home-phone-recipe {
  position: relative;
  min-height: 11.7rem;
  margin-inline: 0.75rem;
  overflow: hidden;
  border-radius: var(--home-radius-surface);
  color: #fff;
  background: #dce7df;
}

.home-phone-recipe::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(12, 28, 23, 0.84));
}

.home-phone-recipe img {
  object-fit: cover;
}

.home-phone-recipe > span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
}

.home-phone-recipe small,
.home-phone-list small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.56rem;
}

.home-phone-recipe strong {
  max-width: 14ch;
  font-size: 0.86rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-phone-list {
  display: grid;
  padding: 0.75rem 1rem 3.8rem;
}

.home-phone-list > div {
  display: grid;
  min-height: 3.85rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  border-bottom: 1px solid #e4e9e4;
}

.home-phone-list-icon {
  display: inline-flex;
  width: 1.95rem;
  height: 1.95rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: #32786f;
  background: #e1eee9;
}

.home-phone-list-icon svg {
  width: 1rem;
  height: 1rem;
}

.home-phone-list > div > span:nth-child(2) {
  display: grid;
  gap: 0.12rem;
}

.home-phone-list small {
  color: #667670;
}

.home-phone-list strong {
  font-size: 0.67rem;
}

.home-phone-count {
  color: #5f706a;
  font-size: 0.64rem;
  font-weight: 760;
}

.home-phone-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.home-phone-nav svg {
  width: 1rem;
  height: 1rem;
}

.home-phone-nav svg:first-child {
  color: #347f75;
}

.home-product-modes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
}

.home-product-modes article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem 1.4rem;
  padding-block: clamp(1.8rem, 3vw, 2.6rem);
}

.home-product-modes article + article {
  padding-left: 0;
}

.home-product-modes article > svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  color: var(--home-accent);
}

.home-product-modes article > div {
  display: grid;
  gap: 0.55rem;
}

.home-product-modes h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.home-product-modes p {
  max-width: 34rem;
  color: var(--home-muted);
  font-size: 0.95rem;
}

.home-category-section {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  padding-block: clamp(5rem, 10vw, 9.5rem);
}

.home-category-heading .home-text-link {
  justify-self: end;
}

.home-category-index {
  display: grid;
}

.home-category-index > a {
  position: relative;
  display: grid;
  gap: 1rem 2rem;
  align-items: center;
  color: var(--home-ink);
  text-decoration: none;
  transition:
    color var(--motion-fast) ease,
    padding var(--motion-base) var(--ease-emphasized),
    background-color var(--motion-fast) ease;
}

.home-category-number {
  color: var(--home-accent);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.home-category-copy {
  display: grid;
  align-items: baseline;
}

.home-category-copy strong {
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-category-copy > span {
  color: var(--home-muted);
  font-size: 0.95rem;
}

.home-category-index > a:hover .home-category-arrow {
  color: #fff;
  transform: translateX(0.2rem);
}

.home-quality-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
}

.home-quality-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.home-quality-image {
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s var(--ease-emphasized);
}

.home-quality-section:hover .home-quality-image {
  transform: scale(1.018);
}

.home-quality-copy {
  position: relative;
  align-content: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 7vw, 7rem);
}

.home-quality-copy h2 {
  max-width: 12ch;
  color: #283b35;
  font-size: clamp(2.55rem, 4.6vw, 4.7rem);
}

.home-quality-copy > p {
  max-width: 38rem;
  color: #596862;
}

.home-quality-list {
  display: grid;
  gap: 0.9rem;
  margin: 0.8rem 0;
  padding: 0;
  list-style: none;
}

.home-quality-list li {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.55rem;
}

.home-quality-list li > span {
  color: #2f6f94;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.home-quality-list li > div {
  display: grid;
  gap: 0.35rem;
}

.home-quality-list strong {
  color: #283b35;
  font-size: 0.98rem;
}

.home-quality-list p {
  margin: 0;
  color: #63716c;
  font-size: 0.88rem;
  line-height: 1.55;
}

.home-quality-copy .home-text-link {
  color: #283b35;
}

.home-cooking-guide-section {
  display: grid;
  gap: clamp(2.8rem, 6vw, 5rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.home-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-knowledge-item {
  display: grid;
  gap: 1rem;
  color: var(--home-ink);
  text-decoration: none;
}

.home-knowledge-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--home-radius-media);
  background: var(--home-media-placeholder);
}

.home-knowledge-media img {
  object-fit: cover;
  transition: transform 700ms var(--ease-emphasized);
}

.home-knowledge-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-inline: 0.15rem;
}

.home-knowledge-copy strong {
  max-width: 20ch;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.home-knowledge-copy svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--home-accent);
  transition: transform var(--motion-fast) var(--ease-emphasized);
}

.home-knowledge-item:hover .home-knowledge-copy svg {
  transform: translateX(0.25rem);
}

.home-final-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
  gap: 2.5rem clamp(3rem, 8vw, 8rem);
  align-items: end;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem);
}

.home-final-copy,
.home-final-search {
  position: relative;
  z-index: 2;
}

.home-final-copy h2 {
  max-width: 11ch;
}

.home-final-search {
  width: 100%;
}

@keyframes home-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1.5deg);
  }

  50% {
    transform: translate3d(0, -0.75rem, 0) rotate(0.5deg);
  }
}

@keyframes home-progress-breathe {
  0%,
  100% {
    transform: scaleX(0.96);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes home-section-enter {
  from {
    transform: translateY(1.6rem);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes home-product-enter {
  from {
    transform: perspective(100rem) translateY(2rem) rotateX(4deg)
      rotateY(-5deg);
  }

  to {
    transform: perspective(100rem) translateY(0) rotateX(2deg)
      rotateY(-3deg);
  }
}

@supports (animation-timeline: view()) {
  .home-section-reveal {
    animation: home-section-enter both;
    animation-timeline: view();
    animation-range: entry 3% cover 24%;
  }

  .home-dashboard-frame {
    animation: home-product-enter both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

html[data-theme="dark"] .home-product-intro h2,
html[data-theme="dark"] .home-product-modes h3 {
  color: #eef6f1;
}

html[data-theme="dark"] .home-product-intro > p:last-child,
html[data-theme="dark"] .home-product-modes p {
  color: #b6c4bf;
}

html[data-theme="dark"] .home-quality-copy h2,
html[data-theme="dark"] .home-quality-list strong,
html[data-theme="dark"] .home-quality-copy .home-text-link {
  color: #edf5f0;
}

html[data-theme="dark"] .home-quality-copy > p,
html[data-theme="dark"] .home-quality-list p {
  color: #b9c8c2;
}

html[data-theme="dark"] .home-quality-list li > span {
  color: #73add0;
}

@media (max-width: 1120px) {

  .home-dashboard-frame {
    width: 82%;
    left: 2%;
  }

  .home-dashboard-layout {
    grid-template-columns: 9rem minmax(0, 1fr);
  }

  .home-dashboard-nav span {
    padding-inline: 0.45rem;
  }

  .home-phone-shell {
    right: 2.5%;
  }
}

@media (max-width: 900px) {
  .home-section-heading,
.home-category-heading,
.home-product-intro,
.home-quality-section,
.home-final-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-section-heading > p,
.home-product-intro > p:last-child {
    max-width: 42rem;
  }

  .home-recipe-editorial-grid {
    min-height: 39rem;
    grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.82fr);
  }

  .home-product-stage {
    min-height: 46rem;
  }

  .home-dashboard-frame {
    top: 4%;
    left: 50%;
    width: 62rem;
    transform: translateX(-50%) scale(0.78);
    transform-origin: top center;
  }

  .home-phone-shell {
    right: 6%;
    bottom: 0;
  }

  .home-category-heading .home-text-link {
    justify-self: start;
  }

  .home-quality-media {
    min-height: min(78vw, 38rem);
  }

  .home-quality-copy {
    padding-inline: clamp(1.25rem, 8vw, 5rem);
  }

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

  .home-knowledge-item:first-child {
    grid-column: 1 / -1;
  }

  .home-knowledge-item:first-child .home-knowledge-media {
    aspect-ratio: 16 / 8;
  }

  .home-final-section {
    align-items: start;
  }

  .home-final-search {
    max-width: 42rem;
  }
}

@media (max-width: 720px) {

  .home-recipe-editorial-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .home-recipe-story,
.home-recipe-story.is-lead {
    min-height: 0;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .home-recipe-story.is-lead {
    aspect-ratio: 4 / 4.1;
  }

  .home-recipe-story-text strong,
.home-recipe-story:not(.is-lead) .home-recipe-story-text strong {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .home-dashboard-frame {
    top: 2rem;
    width: 58rem;
    transform: translateX(-50%) scale(0.6);
  }

  .home-phone-screen {
    min-height: 31rem;
  }

  .home-phone-recipe {
    min-height: 10rem;
  }

  .home-product-modes {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-product-modes article + article {
    padding-left: 0;
  }

  .home-category-index > a {
    grid-template-columns: 2.7rem minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .home-category-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .home-category-copy strong {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .home-category-copy > span {
    font-size: 0.85rem;
  }

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

  .home-knowledge-item:first-child {
    grid-column: auto;
  }

  .home-knowledge-item:first-child .home-knowledge-media,
.home-knowledge-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 520px) {
  .home-content-section {
    padding-inline: 1.15rem;
  }

  .home-final-search {
    min-height: 3.75rem;
  }

  .home-final-search > svg {
    margin-left: 0.9rem;
  }

  .home-final-search input {
    min-height: 3.65rem;
    padding-inline: 0.7rem;
    font-size: 0.9rem;
  }

  .home-final-search button {
    min-width: 3.15rem;
    min-height: 3.15rem;
    padding-inline: 0.85rem;
  }

  .home-section-heading h2,
.home-category-heading h2,
.home-product-intro h2,
.home-quality-copy h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.4rem);
  }

  .home-recipe-story-copy {
    gap: 0.75rem;
    padding: 1.15rem;
  }

  .home-recipe-story-text > span {
    display: none;
  }

  .home-recipe-story-arrow,
.home-category-arrow {
    width: 2.35rem;
    height: 2.35rem;
  }

  .home-dashboard-frame {
    width: 56rem;
    transform: translateX(-50%) scale(0.48);
  }

  .home-product-stage {
    min-height: 44rem;
  }

  .home-phone-shell {
    right: 50%;
    bottom: 0;
    width: min(68vw, 16.75rem);
    transform: translateX(50%);
    animation: none;
  }

  .home-category-index > a:hover {
    padding-inline: 0.6rem;
  }

  .home-quality-media {
    min-height: 105vw;
  }

  .home-quality-copy {
    padding: 4rem 1.15rem;
  }

  .home-final-section {
    padding: 4.5rem 1.15rem;
  }

  .home-final-search {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-final-search button {
    grid-column: 1 / -1;
    min-height: 3.35rem;
    margin: 0 0.3rem 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-phone-shell,
.home-dashboard-progress span,
.home-section-reveal,
.home-dashboard-frame {
    animation: none;
  }

  .home-recipe-story-image,
.home-quality-image,
.home-knowledge-media img,
.home-recipe-story-arrow,
.home-category-arrow,
.home-text-link svg,
.home-final-search,
.home-final-search button {
    transition: none;
  }
}

/* Klare, präzise Plany-Fassung: weiß, bildgeführt und mit Fjordblau akzentuiert. */

.home-final-search {
  border-color: var(--home-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(19, 40, 63, 0.09);
}

.home-final-search:focus-within {
  border-color: var(--home-accent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--focus-ring) 15%, transparent),
    0 16px 36px rgba(19, 40, 63, 0.1);
}

.home-section-heading h2,
.home-category-heading h2,
.home-product-intro h2,
.home-quality-copy h2,
.home-final-copy h2 {
  letter-spacing: -0.058em;
}

.home-recipes-section,
.home-category-section,
.home-cooking-guide-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.home-recipe-editorial-grid {
  min-height: clamp(34rem, 54vw, 45rem);
  gap: clamp(0.7rem, 1.2vw, 1rem);
}

.home-recipe-story,
.home-knowledge-media,
.home-dashboard-frame {
  border-radius: var(--radius-lg);
}

.home-recipe-story {
  box-shadow: 0 14px 34px rgba(19, 40, 63, 0.07);
}

.home-product-section {
  padding-block: clamp(4.75rem, 8vw, 7.5rem);
  background: #f4f8fb;
}

.home-product-intro h2,
.home-product-modes h3 {
  color: var(--home-ink);
}

.home-product-intro > p:last-child,
.home-product-modes p {
  color: var(--home-muted);
}

.home-product-stage {
  min-height: clamp(39rem, 57vw, 51rem);
  margin-top: clamp(2.75rem, 5vw, 4.75rem);
}

.home-dashboard-frame {
  border-color: rgba(19, 40, 63, 0.13);
  box-shadow: 0 2.6rem 5.6rem rgba(19, 40, 63, 0.13);
}

.home-preview-brand > span,
.home-dashboard-progress span {
  background: var(--home-accent);
}

.home-preview-avatar {
  color: var(--home-accent-strong);
  background: var(--brand-100);
}

.home-dashboard-nav {
  border-right-color: #e2ebf1;
  background: #f5f9fb;
}

.home-dashboard-nav span.is-active,
.home-phone-list-icon {
  color: #245875;
  background: #e7f1f7;
}

.home-dashboard-heading > div > span,
.home-dashboard-label,
.home-product-modes article > svg,
.home-phone-nav svg:first-child {
  color: #2f6f94;
}

.home-week-day.is-today {
  background: linear-gradient(180deg, rgba(226, 240, 244, 0.88), transparent 88%);
}

.home-dashboard-checks svg {
  background: var(--home-accent);
}

.home-phone-shell {
  right: 4.75%;
  bottom: 0.5%;
  width: clamp(16.5rem, 20vw, 18.75rem);
  padding: 0.38rem;
  isolation: isolate;
  border: 1px solid rgba(238, 247, 251, 0.82);
  border-radius: 3.15rem;
  background:
    linear-gradient(145deg, #e9f2f6 0%, #7c929d 6%, #17323d 15%, #07151c 47%, #3c5662 84%, #b8c8cf 100%);
  box-shadow:
    0 3.1rem 6.5rem rgba(16, 47, 58, 0.26),
    0 0.8rem 1.8rem rgba(19, 40, 63, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  animation: none;
}

.home-phone-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.16rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2.95rem;
  pointer-events: none;
}

.home-phone-shell::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 12%;
  bottom: -5%;
  left: 12%;
  height: 12%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-600) 28%, transparent);
  filter: blur(1.35rem);
  pointer-events: none;
}

.home-phone-side-button {
  position: absolute;
  z-index: -1;
  width: 0.18rem;
  border: 1px solid rgba(236, 246, 250, 0.42);
  border-radius: 0.16rem;
  background: linear-gradient(180deg, #8ba0aa, #19323d 20%, #122832 82%, #7d919b);
  box-shadow: 0 0.15rem 0.35rem rgba(8, 24, 31, 0.28);
}

.home-phone-side-button-action,
.home-phone-side-button-volume-up,
.home-phone-side-button-volume-down {
  left: -0.19rem;
}

.home-phone-side-button-action {
  top: 16%;
  height: 1.65rem;
}

.home-phone-side-button-volume-up {
  top: 23%;
  height: 2.6rem;
}

.home-phone-side-button-volume-down {
  top: 31%;
  height: 2.6rem;
}

.home-phone-side-button-power {
  top: 25%;
  right: -0.19rem;
  height: 4rem;
}

.home-phone-screen {
  position: relative;
  min-height: 0;
  aspect-ratio: 393 / 852;
  overflow: hidden;
  border: 1px solid rgba(4, 12, 17, 0.84);
  border-radius: 2.78rem;
  color: #13283f;
  background: #f7fafc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 0 1.2rem rgba(9, 27, 36, 0.12);
}

.home-phone-reflection {
  position: absolute;
  z-index: 20;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.16) 0%, transparent 22%, transparent 76%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

.home-phone-statusbar {
  position: relative;
  z-index: 4;
  display: grid;
  height: 2.45rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 1.05rem;
  color: #102834;
  font-size: 0.58rem;
  font-weight: 820;
}

.home-phone-speaker {
  position: relative;
  z-index: 4;
  top: auto;
  left: auto;
  display: block;
  width: 5.15rem;
  height: 1.48rem;
  border: 1px solid rgba(0, 0, 0, 0.94);
  border-radius: var(--radius-pill);
  background: #020405;
  box-shadow: inset 0 0.12rem 0.3rem rgba(255, 255, 255, 0.04);
  transform: none;
}

.home-phone-speaker i {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #273e4b, #060b0f 62%);
  transform: translateY(-50%);
}

.home-phone-status-icons {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.32rem;
}

.home-phone-status-icons > i {
  position: relative;
  display: block;
}

.home-phone-signal {
  width: 0.72rem;
  height: 0.5rem;
  background: linear-gradient(to right, #102834 0 17%, transparent 17% 27%, #102834 27% 46%, transparent 46% 56%, #102834 56% 76%, transparent 76% 86%, #102834 86% 100%);
  clip-path: polygon(0 66%, 17% 66%, 17% 48%, 46% 48%, 46% 28%, 76% 28%, 76% 0, 100% 0, 100% 100%, 0 100%);
}

.home-phone-wifi {
  width: 0.7rem;
  height: 0.5rem;
  overflow: hidden;
  border-top: 0.12rem solid #102834;
  border-radius: 50% 50% 0 0;
}

.home-phone-wifi::before,
.home-phone-wifi::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.home-phone-wifi::before {
  top: 0.18rem;
  width: 0.4rem;
  height: 0.32rem;
  border-top: 0.11rem solid #102834;
}

.home-phone-wifi::after {
  bottom: 0;
  width: 0.12rem;
  height: 0.12rem;
  background: #102834;
}

.home-phone-battery {
  width: 0.82rem;
  height: 0.44rem;
  border: 0.08rem solid #102834;
  border-radius: 0.12rem;
}

.home-phone-battery::before {
  content: "";
  position: absolute;
  inset: 0.08rem;
  border-radius: 0.04rem;
  background: #102834;
}

.home-phone-battery::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.18rem;
  width: 0.1rem;
  height: 0.22rem;
  border-radius: 0 0.08rem 0.08rem 0;
  background: #102834;
  transform: translateY(-50%);
}

.home-phone-app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.35rem 1rem 0.55rem;
}

.home-phone-app-head > span:first-child {
  display: grid;
  gap: 0.08rem;
}

.home-phone-app-head small {
  color: #6a7d8f;
  font-size: 0.54rem;
  font-weight: 720;
}

.home-phone-app-head strong {
  color: #13283f;
  font-size: 1.42rem;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-phone-profile {
  position: relative;
  display: inline-flex;
  width: 2.05rem;
  height: 2.05rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e4f1f5;
  box-shadow: 0 0.3rem 0.8rem rgba(19, 40, 63, 0.09);
}

.home-phone-profile > i {
  position: absolute;
  right: -0.12rem;
  bottom: -0.08rem;
  display: inline-flex;
  width: 0.9rem;
  height: 0.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #f7fafc;
  border-radius: 50%;
  background: #ffffff;
}

.home-phone-view-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: 1rem;
  border-bottom: 1px solid #dbe5ee;
}

.home-phone-view-switch span {
  position: relative;
  padding: 0.5rem 0 0.45rem;
  color: #798b9c;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
}

.home-phone-view-switch span.is-active {
  color: var(--home-accent-strong);
}

.home-phone-view-switch span.is-active::after {
  content: "";
  position: absolute;
  right: 17%;
  bottom: -1px;
  left: 17%;
  height: 2px;
  background: var(--home-accent);
}

.home-phone-days {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.32rem;
  padding: 0.65rem 0.9rem 0.58rem;
}

.home-phone-days > span {
  position: relative;
  display: grid;
  min-height: 3.25rem;
  place-items: center;
  align-content: center;
  gap: 0.08rem;
  border: 1px solid transparent;
  border-radius: var(--home-radius-control);
  color: #738596;
  background: #ffffff;
}

.home-phone-days > span.is-active {
  border-color: var(--brand-300);
  color: var(--home-accent-strong);
  background: var(--brand-50);
  box-shadow: 0 0.35rem 0.9rem
    color-mix(in srgb, var(--brand-600) 10%, transparent);
}

.home-phone-days small {
  font-size: 0.48rem;
  font-weight: 760;
  text-transform: uppercase;
}

.home-phone-days strong {
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 820;
}

.home-phone-days i {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--brand-300);
}

.home-phone-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: 1rem;
  padding: 0.55rem 0.7rem;
  border-block: 1px solid #dce8ed;
  background: #edf6f8;
}

.home-phone-summary > span {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.22rem;
}

.home-phone-summary strong {
  color: #245875;
  font-size: 0.76rem;
  font-weight: 850;
}

.home-phone-summary small {
  color: #6e8291;
  font-size: 0.44rem;
  font-weight: 720;
}

.home-phone-summary > i {
  width: 1px;
  height: 1.3rem;
  background: #cadde4;
}

.home-phone-today-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.72rem 1rem 0.45rem;
}

.home-phone-today-head > span {
  color: #13283f;
  font-size: 0.8rem;
  font-weight: 840;
}

.home-phone-today-head small {
  color: #778999;
  font-size: 0.46rem;
  font-weight: 700;
}

.home-phone-meals {
  display: grid;
  margin-inline: 1rem;
  border-block: 1px solid #dbe5ee;
}

.home-phone-meal {
  display: grid;
  min-height: 3.55rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.62rem;
  padding-block: 0.48rem;
  border-bottom: 1px solid #e3ebf1;
}

.home-phone-meal:last-child {
  border-bottom: 0;
}

.home-phone-meal-featured {
  min-height: 5.2rem;
}

.home-phone-meal-image {
  position: relative;
  display: block;
  width: 5.45rem;
  height: 4.25rem;
  overflow: hidden;
  border-radius: var(--home-radius-control);
  background: #dce9ed;
}

.home-phone-meal-image img {
  object-fit: cover;
}

.home-phone-meal-icon {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--home-radius-control);
  background: #e7f2f5;
}

.home-phone-meal > span:last-child {
  display: grid;
  gap: 0.12rem;
}

.home-phone-meal small,
.home-phone-shopping-status small {
  color: #687d8f;
  font-size: 0.46rem;
  font-weight: 700;
}

.home-phone-meal strong {
  color: #19344b;
  font-size: 0.64rem;
  font-weight: 830;
  line-height: 1.18;
}

.home-phone-meal em {
  color: var(--home-accent);
  font-size: 0.46rem;
  font-style: normal;
  font-weight: 760;
}

.home-phone-shopping-status {
  display: grid;
  min-height: 3.25rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.58rem;
  margin: 0.65rem 1rem 4.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dce7ee;
}

.home-phone-shopping-status > span:first-child {
  display: inline-flex;
  width: 2.05rem;
  height: 2.05rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--home-radius-control);
  background: #e4f1f5;
}

.home-phone-shopping-status > span:nth-child(2) {
  display: grid;
  gap: 0.08rem;
}

.home-phone-shopping-status strong {
  color: #19344b;
  font-size: 0.61rem;
  font-weight: 820;
}

.home-phone-shopping-status > i {
  display: inline-flex;
  min-width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--home-accent);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 850;
}

.home-phone-add-action {
  position: absolute;
  z-index: 5;
  right: 0.95rem;
  bottom: 4.15rem;
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #ffffff;
  background: var(--home-accent);
  box-shadow: 0 0.65rem 1.15rem color-mix(in srgb, var(--home-accent) 28%, transparent);
}

.home-phone-nav {
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.7rem;
  padding: 0.35rem 0.28rem 0.58rem;
  border-top: 1px solid #d9e4eb;
  border-radius: 0;
  color: #758795;
  background: #ffffff;
  box-shadow: 0 -0.5rem 1.2rem rgba(19, 40, 63, 0.05);
}

.home-phone-nav > span {
  display: grid;
  min-width: 0;
  place-items: center;
  gap: 0.12rem;
  opacity: 0.62;
}

.home-phone-nav > span.is-active {
  opacity: 1;
}

.home-phone-nav small {
  color: #728493;
  font-size: 0.39rem;
  font-weight: 760;
}

.home-phone-nav > span.is-active small {
  color: var(--home-accent-strong);
}

.home-product-modes {
  margin-top: 0.75rem;
}

.home-category-index {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem clamp(1.5rem, 4vw, 4rem);
}

.home-category-index > a {
  min-height: clamp(7rem, 11vw, 9rem);
  grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
}

.home-category-index > a:hover {
  padding-inline: 1.25rem;
  background: #f5f9fb;
}

.home-category-copy {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
}

.home-category-copy strong {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.home-category-arrow {
  border-color: rgba(19, 40, 63, 0.18);
  color: var(--home-accent);
}

.home-category-index > a:hover .home-category-arrow {
  background: var(--home-accent);
}

.home-quality-section {
  min-height: 44rem;
  background: #eef6f9;
}

.home-quality-list li > span {
  color: var(--home-accent);
}

.home-quality-copy h2,
.home-quality-list strong,
.home-quality-copy .home-text-link {
  color: var(--home-ink);
}

.home-quality-copy > p,
.home-quality-list p {
  color: var(--home-muted);
}

.home-knowledge-grid {
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

.home-final-section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--home-ink);
  background: #e1f0f4;
}

.home-final-copy h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.home-final-search {
  box-shadow: 0 18px 40px rgba(19, 40, 63, 0.12);
}

.home-final-search button {
  background: var(--home-action);
}

.home-final-search button:hover {
  background: var(--home-action-strong);
}

@media (max-width: 880px) {
  .home-category-index {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {

  .home-product-stage {
    min-height: 41rem;
  }

  .home-phone-shell {
    right: 50%;
    bottom: 0.5rem;
    width: min(68vw, 16.75rem);
    transform: translateX(50%);
    animation: none;
  }

  .home-quality-section {
    min-height: 0;
  }
}

/* Darkmode: dieselbe Editorial-Idee, übersetzt in tiefes Navy statt Grauschwarz. */

html[data-theme="dark"] .home-product-intro > p:last-child,
html[data-theme="dark"] .home-product-modes p,
html[data-theme="dark"] .home-quality-copy > p,
html[data-theme="dark"] .home-quality-list p {
  color: var(--home-muted);
}

html[data-theme="dark"] .home-final-search {
  border-color: var(--home-line);
  background: rgba(14, 32, 42, 0.97);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .home-final-search input {
  color: var(--home-ink);
}

html[data-theme="dark"] .home-final-search input::placeholder {
  color: #8fa4af;
}

html[data-theme="dark"] .home-product-section {
  background: #0b1d27;
}

html[data-theme="dark"] .home-quality-section {
  background: #102630;
}

html[data-theme="dark"] .home-final-section {
  color: var(--home-ink);
  background: #102a36;
}

html[data-theme="dark"] .home-category-index > a:hover {
  background: rgba(98, 175, 189, 0.08);
}

html[data-theme="dark"] .home-dashboard-frame {
  border-color: #294553;
  color: #edf6f8;
  background: #0e202a;
  box-shadow: 0 2.8rem 6rem rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .home-dashboard-topbar,
html[data-theme="dark"] .home-dashboard-main {
  color: #edf6f8;
  background: #0e202a;
}

html[data-theme="dark"] .home-dashboard-topbar > :nth-child(2) {
  color: #a7b8c2;
}

html[data-theme="dark"] .home-dashboard-heading > div > span,
html[data-theme="dark"] .home-dashboard-label {
  color: #9ac4dd;
}

html[data-theme="dark"] .home-dashboard-layout,
html[data-theme="dark"] .home-dashboard-nav {
  background: #0b1d27;
}

html[data-theme="dark"] .home-dashboard-nav {
  border-right-color: #203743;
}

html[data-theme="dark"] .home-dashboard-nav span,
html[data-theme="dark"] .home-week-day-heading span,
html[data-theme="dark"] .home-week-day-heading strong,
html[data-theme="dark"] .home-week-slot,
html[data-theme="dark"] .home-dashboard-bottom small,
html[data-theme="dark"] .home-dashboard-checks span {
  color: #96abb6;
}

html[data-theme="dark"] .home-dashboard-nav span.is-active,
html[data-theme="dark"] .home-preview-avatar {
  color: var(--home-accent);
  background: #173642;
}

html[data-theme="dark"] .home-week-day.is-today {
  background: linear-gradient(180deg, rgba(23, 54, 66, 0.9), transparent 88%);
}

html[data-theme="dark"] .home-week-day.is-today .home-week-day-heading span,
html[data-theme="dark"] .home-week-day.is-today .home-week-day-heading strong {
  color: var(--home-accent);
}

html[data-theme="dark"] .home-week-meal-title {
  color: #edf6f8;
}

html[data-theme="dark"] .home-week-meal-image {
  background: #173744;
}

html[data-theme="dark"] .home-dashboard-progress {
  background: #1c3541;
}

html[data-theme="dark"] .home-preview-brand > span,
html[data-theme="dark"] .home-dashboard-progress span,
html[data-theme="dark"] .home-dashboard-checks svg {
  background: var(--home-accent);
}

html[data-theme="dark"] .home-phone-speaker {
  background: #020405;
}

html[data-theme="dark"] .home-phone-shell {
  border-color: #496977;
  background:
    linear-gradient(145deg, #9fb2bb 0%, #536a75 6%, #132b35 15%, #030b0f 48%, #2a434e 84%, #81949d 100%);
  box-shadow:
    0 3rem 6.3rem rgba(0, 0, 0, 0.48),
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
