:root {
	--bg-cream: #fff7ed;
	--bg-dark: #381c10;
	--brown-700: #8a3301;
	--brown-500: #be6537;
	--brown-400: #d0764a;
	--sand-300: #ffeaae;
	--sand-400: #e3a688;
	--text-main: #381c10;
	--text-soft: #825f5d;
	--wine: #800f15;
	--shadow-dark: 0 3px 3px rgba(138, 51, 1, 0.28);
	--shadow-light: 0 3px 3px rgba(56, 28, 16, 0.08);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: radial-gradient(circle at 12% 10%, #f4d7bb 0%, #d9b08f 42%, #bc8a66 100%);
	color: var(--text-main);
	font-family: "Inter", sans-serif;
}

.app-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px;
}

.phone {
	position: relative;
	width: 448px;
	height: 880px;
	border-radius: 28px;
	overflow: hidden;
	border: 8px solid #2d170f;
	box-shadow: 0 24px 50px rgba(46, 25, 14, 0.4);
	background: #000;
}

.screen {
	position: absolute;
	inset: 0;
	display: none;
	background: var(--bg-cream);
}

.screen.is-active {
	display: block;
}

.screen-scroll {
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.screen-scroll::-webkit-scrollbar {
	display: none;
}

.center-mode {
	display: grid;
	place-items: center;
	padding: 32px;
}

.with-bars {
	padding-top: 127px;
	padding-bottom: 80px;
}

.pad {
	padding: 30px 32px;
}

.welcome {
	background: linear-gradient(-38.08deg, var(--brown-700) 17.013%, var(--brown-500) 116.91%);
	padding: 24px 30px 48px 36px;
}

.welcome-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	justify-content: flex-end;
	align-items: center;
	gap: 32px;
	padding-bottom: 48px;
}

.welcome-logo-area {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-top: 34px;
}

.curve-text-wrapper {
	width: 560px;
	height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(10px, 72px) rotate(32.07deg) scale(1.08);
	transform-origin: center;
}

.curve-text-grid {
	position: relative;
	width: 380.014px;
	height: 343.635px;
	display: grid;
}

.letter-wrapper {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.letter {
	position: absolute;
	font-family: "Cedarville Cursive", cursive;
	font-size: 66px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0;
}

.letter-d-wrapper {
	top: 95.21px;
	left: 21.53px;
	width: 66.47px;
	height: 47.263px;
}

.letter-d {
	width: 31.18px;
	height: 60px;
	transform: rotate(-73.11deg);
}

.letter-o-wrapper {
	top: 54.75px;
	left: 39.3px;
	width: 65.381px;
	height: 57.756px;
}

.letter-o {
	width: 28.364px;
	height: 60px;
	transform: rotate(-54.81deg);
}

.letter-u-wrapper {
	top: 17.84px;
	left: 70.05px;
	width: 65.094px;
	height: 70.663px;
}

.letter-u {
	width: 37.5px;
	height: 60px;
	transform: rotate(-34.92deg);
}

.letter-g-wrapper {
	top: 1.59px;
	left: 120.97px;
	width: 44.924px;
	height: 65.812px;
}

.letter-g {
	width: 31.123px;
	height: 60px;
	transform: rotate(-14.24deg);
}

.letter-h-wrapper {
	top: 0;
	left: 166.2px;
	width: 33.447px;
	height: 61.827px;
}

.letter-h {
	width: 29.533px;
	height: 60px;
	transform: rotate(3.8deg);
}

.image-wrapper {
	position: absolute;
	top: 25.31px;
	left: 0;
	width: 380.014px;
	height: 343.635px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-32.07deg);
}

.bread-image-welcome {
	width: 352px;
	height: 228px;
	border-radius: 22px;
	object-fit: cover;
	display: block;
}

.welcome-buttons {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	z-index: 10;
	transform: translateY(40px);
}

.btn-primary {
	background: #ffeaae;
	color: #381c10;
	box-shadow: 0px 3px 3px 0px rgba(138, 51, 1, 0.28);
	width: 100%;
	padding: 19px 20px 17px 20px;
	font-size: 27px;
	line-height: 20px;
	font-family: "Zain", sans-serif;
	font-weight: 400;
	text-align: center;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
}

.btn-secondary {
	background: transparent;
	color: #fff7ed;
	text-decoration: underline;
	font-size: 27px;
	line-height: 20px;
	width: 100%;
	padding: 0;
	cursor: pointer;
	border: 0;
	font-family: "Zain", sans-serif;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
}

.hero-logo {
	display: none;
}

.logo-word {
	display: none;
}

.placeholder-hero {
	display: none;
}

.welcome-actions {
	display: none;
}

.btn,
.link-btn,
.tips-row {
	border: 0;
	cursor: pointer;
	border-radius: 8px;
	font-family: "Zain", sans-serif;
}

.btn {
	padding: 19px 20px 17px 20px;
	font-family: "Zain", sans-serif;
	font-size: 27px;
	line-height: 20px;
	text-align: center;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	width: 100%;
	white-space: nowrap;
}

.btn-light {
	display: none;
}

.btn-soft {
	display: none;
}

.link-btn {
	display: none;
}

.top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: flex-start;
	padding: 45px 36px 50px;
	z-index: 3;
}

.top-bar.dark {
	background: transparent;
	color: #3a2625;
}

.top-bar.light,
.top-bar.ghost {
	background: transparent;
	color: #3a2625;
}

.icon-btn {
	width: 15px;
	height: 30px;
	border: 0;
	background: transparent;
	color: inherit;
	padding: 0;
	cursor: pointer;
}

.icon-btn img {
	width: 15px;
	height: 30px;
	display: block;
}

.header-progress-wrap {
	margin-left: auto;
	display: flex;
	align-items: flex-end;
	gap: 4px;
	padding-top: 12px;
}

.progress {
	margin: 0 0 0 auto;
	font: 400 22px/1 "Inter", sans-serif;
}

.progress span {
	opacity: 0.45;
}

.streak {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font: 700 12px/1 "Inter", sans-serif;
}

.phase-head {
	margin: 0;
	font: 400 24px/1 "Inter", sans-serif;
	color: #fff7ed;
	flex: 1;
}

.phase1-step1-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 140px;
	padding: 45px 36px 50px;
	background: #381c10;
	z-index: 8;
	display: grid;
	grid-template-columns: 15px 1fr auto 24.889px;
	align-items: start;
	column-gap: 10px;
	overflow: hidden;
}

.phase1-step1-header-main {
	position: relative;
	width: 350px;
	height: 32px;
	flex-shrink: 0;
}

.phase1-step1-header-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
}

.phase1-step1-header-progress {
	position: absolute;
	left: 300px;
	top: 12px;
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase1-step1-header-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.phase1-step1-header-heading {
	position: absolute;
	left: calc(50% - 3px);
	top: 11px;
	transform: translateX(-50%);
	width: 240px;
	height: 16px;
	display: flex;
	align-items: flex-start;
}

.phase1-step1-header-heading p {
	margin: 0;
	flex: 1 0 0;
	min-width: 0;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}


.phase1-step1-header-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.phase1-step1-header-fire-wrap {
	position: absolute;
	left: 370px;
	top: 45px;
	width: 24.889px;
	height: 32px;
}


.phase1-step1-header-bar {
	position: absolute;
	left: 36px;
	right: 36px;
	top: 77px;
	display: flex;
	align-items: flex-start;
	gap: 2.99px;
	height: 51px;
	padding-top: 30px;
	z-index: 6;
}

.phase1-step1-header-bar span {
	flex: 1 0 0;
	min-width: 1px;
	height: 10px;
	background: #ffffff;
}

.phase1-step1-header-bar .on {
	background: #d0764a;
}

/* Home Begin Screen (103-1156 / Figma 173:399) */
.home-begin-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 82px;
	padding: 45px 36px 50px;
	display: flex;
	align-items: flex-start;
	z-index: 6;
	background: #fff7ed;
	overflow: hidden;
}

.home-begin-header-main {
	position: relative;
	width: 350px;
	height: 32px;
}

.home-begin-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
}

.home-begin-progress {
	position: absolute;
	left: 295px;
	top: 12px;
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #3a2625;
}

.home-begin-progress span {
	color: rgba(58, 38, 37, 0.5);
}

.home-begin-fire {
	width: 24.889px;
	height: 32px;
	display: block;
	flex-shrink: 0;
}

.home-begin-content {
	padding-top: 108px;
	padding-bottom: 70px;
	background: #fff7ed;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.home-begin-intro {
	padding: 34px 36px 0;
	display: grid;
	gap: 0;
}

.home-begin-title {
	margin: 0;
	width: 394px;
	max-width: 100%;
	font: 400 0/0 "Cedarville Cursive", cursive;
	color: #800f15;
	letter-spacing: 0;
	white-space: nowrap;
}

.home-begin-title .home-week1-greeting-hello,
.home-begin-title .home-week1-greeting-space,
.home-begin-title .home-week1-greeting-name {
	font-family: "Zain", sans-serif;
	font-size: 48px;
	line-height: 30px;
	font-weight: 400;
	color: #800f15;
}

.home-begin-title .home-week1-greeting-name {
	font-family: "Cedarville Cursive", cursive;
}

.home-begin-image-wrap {
	padding: 0 36px;
	padding-bottom: 20px;
}

.home-begin-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

.home-level-block {
	padding: 0 36px;
	display: grid;
	gap: 4px;
}

.home-level-block h3 {
	margin: 0;
	font: 400 34px/1 "Zain", sans-serif;
	color: #402518;
}

.home-level-block p {
	margin: 0;
	font: 400 18px/1.2 "Zain", sans-serif;
	color: #402518;
}

.home-level-progress {
	height: 16px;
	border: 1.2px solid #9a948f;
	border-radius: 999px;
	background: #f2f0ed;
	margin-top: 2px;
}

.home-week-cards {
	padding: 0 36px;
	display: grid;
	gap: 8px;
}

.home-week-card {
	min-height: 83.2px;
	border: 1.6px solid #525252;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 17.6px;
}

.home-week-dot {
	width: 48px;
	height: 48px;
	border: 1.6px solid #381c10;
	background: #fff;
	border-radius: 999px;
	flex-shrink: 0;
}

.home-week-copy p {
	margin: 0;
	color: #4c4036;
}

.home-week-copy {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.home-week-copy .wk {
	font: 600 18px/24px "Zain", sans-serif;
	color: #381c10;
}

.home-week-copy .desc {
	font: 400 18px/20px "Zain", sans-serif;
	margin-top: 0;
	color: #381c10;
}

.home-week-tag {
	background: #f1dc8f;
	color: #66521f;
	width: 79.125px;
	height: 25.587px;
	border: 0.8px solid #525252;
	border-radius: 4px;
	font: 400 12px/16px "Zain", sans-serif;
	padding: 4px 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: lowercase;
}

.home-week-tag-start {
	background: #d0764a;
	width: 79.125px;
	height: 25.587px;
	border: 0.8px solid #525252;
	border-radius: 4px;
	color: #fff;
	font: 400 12px/16px "Zain", sans-serif;
	padding: 4px 12px;
	text-transform: none;
}

.home-begin-btn-wrap {
	padding: 4px 36px 50px;
	padding-top: 20px;
}

.home-begin-btn {
	position: static;
	background: #d0764a;
	color: #fff;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	padding: 19px 20px 17px;
}

.home-begin-nav {
	gap: 62px;
	justify-content: center;
}

.hello {
	margin: 0 0 16px;
	color: var(--wine);
	font: 400 56px/1 "Cedarville Cursive", cursive;
}

.script-title {
	margin: 0;
	font: 400 54px/0.92 "Cedarville Cursive", cursive;
}

.body-title {
	margin: 0;
	font: 500 34px/1.14 "Inter", sans-serif;
}

.body-lg {
	margin: 0;
	font: 400 25px/1.22 "Inter", sans-serif;
}

.body-md {
	margin: 0;
	font: 400 22px/1.35 "Work Sans", sans-serif;
}

.phase1-step1-title-block {
	margin: 0;
	width: 100%;
}

.phase1-step1-kicker {
	margin: 0;
	font: 400 24px/58px "Zain", sans-serif;
	color: #381c10;
}

.phase1-step1-title {
	margin: 0 0 24px;
	font: 400 48px/58px "Cedarville Cursive", cursive;
	color: #800f15;
}

.phase1-step1-description {
	margin: 0;
	font: 400 20px/30px "Work Sans", sans-serif;
	color: #381c10;
	margin-bottom: 25px;
}

.phase1-step1-tips-btn {
	width: 100%;
	height: 44.006px;
	padding: 0 12px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.phase1-step1-common {
	width: 100%;
	background: #d0764a;
	border-radius: 8px;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
	padding: 1.2px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.phase1-step1-tips-btn span {
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase1-step1-tips-btn img {
	width: 15.994px;
	height: 15.994px;
	display: block;
}

.phase1-step1-tips-panel {
	display: none;
	padding: 8px 12px 12px;
}

.phase1-step1-common.is-open .phase1-step1-tips-panel {
	display: block;
}

.phase1-step1-tips-panel p {
	margin: 0;
	font: 400 17px/20px "Zain", sans-serif;
	color: #ffffff;
}

.phase1-step1-tips-panel-gap {
	margin-top: 10px !important;
}

.phase1-step1-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 15.994px;
	padding-bottom: 20px;
}

.phase1-step1-btn-prev,
.phase1-step1-btn-next {
	height: 56px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
	color: #fff7ed;
	cursor: pointer;
	padding: 19px 20px 17px;
	font-size: 27px;
	line-height: 20px;
	text-align: center;
	white-space: nowrap;
}

.phase1-step1-btn-prev {
	background: #e3a688;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

.phase1-step1-btn-next {
	background: #d0764a;
	font-family: "Zain", sans-serif;
	font-weight: 400;
}

.script-red {
	font: 400 56px/1 "Cedarville Cursive", cursive;
	color: var(--wine);
}

.red {
	color: var(--wine);
}

.cream {
	color: #fff7ed;
}

.center-text {
	text-align: center;
}

.placeholder-img {
	border: 1.2px solid var(--bg-dark);
	border-radius: 19px;
	width: 100%;
	height: auto;
	min-height: 120px;
	object-fit: cover;
	display: block;
}

.placeholder-img,
.placeholder-hero,
.video-box {
	position: relative;
	overflow: hidden;
}



.placeholder-img.tall {
	min-height: 220px;
	height: 220px;
}

.placeholder-img.wide {
	min-height: 200px;
	height: 200px;
}

.video-box {
	border: 1.2px solid var(--bg-dark);
	border-radius: 19px;
	width: 100%;
	height: auto;
	min-height: 200px;
	object-fit: cover;
	display: block;
	margin-bottom: 18px;
}

.week-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 8px 0 18px;
}

.week-card {
	height: 88px;
	border: 1.6px solid #402518;
	border-radius: 8px;
	display: grid;
	place-items: center;
	font: 500 16px/1 "Inter", sans-serif;
	background: #fff;
}

.week-card.done {
	background: #f5e8d9;
}

.recipe-grid,
.two-col {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 12px 0 24px;
}

.recipe-card,
.phase-card {
	display: grid;
	gap: 10px;
}

.two-col .mini-card {
	display: grid;
	grid-template-columns: 20px 40px 1fr;
	gap: 10px;
	align-items: center;
}

.recipe-card p,
.phase-card p {
	margin: 0;
	font: 400 22px/1 "Inter", sans-serif;
}

.recipe-card.locked p {
	color: var(--brown-500);
}

.phase-gradient {
	background: linear-gradient(141deg, #d0764a 1.96%, #8a3301 153.73%);
}

.screen[data-screen="97-1032"] .top-bar {
	height: 82px;
	padding: 45px 36px 50px;
	overflow: hidden;
	background: #ca7146;
	z-index: 8;
}

.phase-header-frame {
	width: 350px;
	height: 32px;
	display: block;
	max-width: none;
}

.phase-header-back-hit {
	position: absolute;
	left: 36px;
	top: 45px;
	width: 24px;
	height: 32px;
	z-index: 2;
}

.screen[data-screen="97-1032"] .with-bars {
	padding-top: 108px;
	padding-bottom: 100px;
}

.screen[data-screen="97-1032"] .pad {
	
}

.phase-list-scroll {
	background: linear-gradient(141deg, #d0764a 1.96%, #8a3301 153.73%);
}

.phase-list-shell {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.phase-title-stack {
	display: grid;
	gap: 12px;
	justify-items: center;
}

.phase-learn-subtitle {
	margin: 0;
	width: 100%;
	max-width: 100%;
	font: 400 24px/29px "Zain", sans-serif;
	letter-spacing: -0.1519px;
	color: #fff7ed;
	text-align: center;
}

.phase-learn-title {
	margin: 0;
	width: 100%;
	max-width: 100%;
	font: 400 48px/30px "Cedarville Cursive", cursive;
	color: #fff7ed;
	text-align: center;
}

.phase-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
}

.phase-card {
	width: 255px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.phase-art {
	width: 255px;
	height: 255px;
	border: 1px solid #381c10;
	border-radius: 19px;
	background: #fff;
	object-fit: contain;
	display: block;
}

.phase-label-group {
	width: 255px;
	text-align: center;
	color: #fff7ed;
}

.phase-card .phase-label-top {
	margin: 0;
	font-family: "Zain", sans-serif;
	font-size: 24px;
	line-height: 37px;
	font-weight: 400;
	letter-spacing: -0.1519px;
}

.phase-card .phase-label-script {
	margin: 0;
	font-family: "Cedarville Cursive", cursive;
	font-size: 31px;
	line-height: 37px;
	font-weight: 400;
}

.phase-continue-btn {
	margin: 0;
	max-width: 376px;
	background: #ffeaae;
	color: #381c10;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	padding: 19px 20px 17px;
}

.screen[data-screen="97-1032"] .phase-continue-btn:active,
.screen[data-screen="97-1032"] .phase-continue-btn.is-clicked {
	background: #ffeaae;
	color: #381c10;
}

/* Phase 1 Intro Screen (91-842 / Figma 91:842) */
.phase1-intro-screen {
	background: #fff7ed;
}

.phase1-intro-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	padding: 45px 36px 50px;
	background: #381c10;
	z-index: 8;
	display: grid;
	grid-template-columns: 15px 1fr auto 24.889px;
	align-items: start;
	column-gap: 10px;
	overflow: hidden;
}

.phase1-intro-back {
	width: 15px;
	height: 30px;
}

.phase1-intro-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.phase1-intro-heading {
	margin: 0;
	padding-top: 10px;
	padding-left: 25px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase1-intro-progress {
	margin: 0;
	padding-top: 12px;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase1-intro-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.phase1-intro-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.phase1-intro-scroll {
	position: absolute;
	top: 109px;
	bottom: 100px;
	left: 0;
	width: 100%;
	overflow-y: auto;
	background: #fff7ed;
	padding-bottom: 210px;
}

.phase1-section {
	padding: 0 36px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.phase1-top-block {
	padding-top: 50px;
}

.phase1-middle-block {
	padding-top: 45px;
}

.phase1-bottom-block {
	padding: 30px 36px 30px;
	gap: 37px;
	align-items: center;
}

.phase1-title-block {
	margin: 0;
	width: 376px;
	max-width: 100%;
	text-align: left;
	font-style: normal;
}

.phase1-title-first {
	min-height: 86px;
}

.phase1-title-block p {
	margin: 0;
}

.phase1-title-base {
	font: 400 32px/52px "Zain", sans-serif;
	color: #381c10;
}

.phase1-title-script {
	font: 400 44px/52px "Cedarville Cursive", cursive;
	color: #771013;
}

.phase1-title-second {
	min-height: 82px;
}

.phase1-title-second .phase1-title-base {
	line-height: 44px;
}

.phase1-title-second .phase1-title-script {
	line-height: 44px;
}

.phase1-copy {
	margin: 0;
	font: 400 20px/30px "Zain", sans-serif;
	color: #381c10;
	letter-spacing: -0.1519px;
	width: 376px;
	max-width: 100%;
}

.phase1-image {
	width: 376px;
	max-width: 100%;
	display: block;
	border-radius: 25px;
	object-fit: cover;
}

.phase1-image-hero {
	height: 275px;
}

.phase1-image-video {
	width: 376px;
	max-width: 100%;
	height: 223.631px;
	border-radius: 0;
	display: block;
	object-fit: cover;
}

.phase1-image-recipe {
	width: 255px;
	height: 255px;
	max-width: none;
}

.phase1-recipe-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.phase1-recipe-caption {
	margin: 0;
	font: 400 24px/21.84px "Zain", sans-serif;
	letter-spacing: -0.1519px;
	color: #381c10;
	text-align: center;
}

.phase1-check-panel {
	background: #fff;
	border: 1.2px solid #381c10;
	border-radius: 8px;
	padding: 23px 17.194px;
	display: grid;
	gap: 28px;
	width: 376px;
	max-width: 100%;
	min-height: 230px;
	align-content: center;
}

.phase1-check-panel p {
	margin: 0;
	font: 400 24px/20px "Zain", sans-serif;
	color: #381c10;
}

.phase1-recipes-title {
	margin: 0;
	font: 400 32px/30px "Zain", sans-serif;
	color: #381c10;
	width: 376px;
	max-width: 100%;
}

.phase1-start-btn {
	background: #d0764a;
	color: #fff7ed;
	font: 400 27px/20px "Zain", sans-serif;
	padding: 19px 20px 17px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
	width: 376px;
	max-width: 100%;
}

/* Phase 2 Checklist Screen (79-964 / Figma 173:494) */
.phase2-checklist-screen {
	background: #fff7ed;
}

.phase2-checklist-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	padding: 45px 36px 50px;
	background: #381c10;
	z-index: 8;
	display: grid;
	grid-template-columns: 15px 1fr auto 24.889px;
	align-items: start;
	column-gap: 10px;
	overflow: hidden;
}

.phase2-checklist-back {
	width: 15px;
	height: 30px;
}

.phase2-checklist-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.phase2-checklist-heading {
	margin: 0;
	padding-top: 10px;
	padding-left: 25px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase2-checklist-progress {
	margin: 0;
	padding-top: 12px;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase2-checklist-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.phase2-checklist-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.phase2-checklist-scroll {
	padding-top: 109px;
	padding-bottom: 100px;
	background: #fff7ed;
}

.phase2-checklist-intro {
	padding: 30px 36px 0;
	display: grid;
	gap: 24px;
}

.phase2-checklist-intro h3 {
	margin: 0;
	font: 400 32px/36px "Zain", sans-serif;
	color: #381c10;
	max-width: 394px;
}

.phase2-checklist-intro p {
	margin: 0;
	font: 400 20px/30px "Zain", sans-serif;
	color: #381c10;
	max-width: 394px;
}

.phase2-checklist-content {
	padding: 26px 36px 30px;
	display: grid;
	gap: 26px;
}

.phase2-checklist-content h2 {
	margin: 0;
	font: 400 48px/30px "Cedarville Cursive", cursive;
	color: #771013;
}

.phase2-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 10px;
	width: 100%;
	max-width: 376px;
}

.phase2-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.phase2-item img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	display: block;
	cursor: pointer;
	border: 1px solid #381c10;
	border-radius: 19px;
	background: #fff;
}

.phase2-item img.phase2-item-contain {
	object-fit: contain;
	object-position: center;
	background: #fff;
}

.phase2-item img.phase2-item-shift-up {
	object-fit: cover;
	object-position: center 90%;
}

.phase2-item span {
	display: flex;
	align-items: center;
	gap: 12px;
	font: 400 24px/20.201px "Zain", sans-serif;
	letter-spacing: -0.1519px;
	color: #381c10;
	min-height: 20px;
}

.phase2-item i {
	position: relative;
	width: 16.064px;
	height: 16.258px;
	border: 1.01px solid rgba(0, 0, 0, 0.1);
	border-radius: 4.04px;
	background: #f3f3f5;
	box-shadow: 0 1.01px 2.02px rgba(0, 0, 0, 0.05);
	flex: 0 0 auto;
}

.phase2-item.is-checked i::after {
	content: "\2713";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #8a3301;
	font: 800 20px/1 "Inter", sans-serif;
}

.phase2-equipment-title {
	font: 400 36px/30px "Cedarville Cursive", cursive;
	color: #381c10;
}

.phase2-grid-equipment {
	row-gap: 12px;
}

.phase2-item-long span {
	font-size: 20px;
	line-height: 20px;
	align-items: flex-start;
	color: #381c10;
}

.phase2-continue-btn {
	margin-top: 11px;
	width: 100%;
	max-width: 376px;
	background: #d0764a;
	color: #fff7ed;
	font: 400 27px/20px "Zain", sans-serif;
	padding: 19px 20px 17px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
}

.phase2-continue-btn:active,
.phase2-continue-btn.is-clicked {
	background: #d0764a;
	color: #fff7ed;
}

.screen[data-screen="82-1278"] {
	background: #fff7ed;
}

.phase2-result-header { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	padding: 45px 36px 50px;
	background: #381c10;
	z-index: 8;
	display: grid;
	grid-template-columns: 15px 1fr auto 24.889px;
	align-items: start;
	column-gap: 10px;
	overflow: hidden;

}

.phase2-result-back {
	width: 15px;
	height: 30px;
}

.phase2-result-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.phase2-result-heading {
	margin: 0;
	padding-top: 10px;
	padding-left: 25px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase2-result-progress {
	margin: 0;
	padding-top: 12px;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase2-result-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.phase2-result-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.phase2-result-scroll {
	padding-top: 109px;
	padding-bottom: 70px;
	background: #fff7ed;
}

.phase2-result-content {
	padding: 30px 36px 56px;
	display: grid;
	gap: 39px;
}

.phase2-have-block {
	display: grid;
	gap: 24px;
	width: 100%;
}

.phase2-have-block h3,
.phase2-missing-heading-wrap h3 {
	margin: 0;
	font: 400 32px/30px "Zain", sans-serif;
	color: #381c10;
}

.phase2-have-list {
	display: grid;
	gap: 28px;
}

.phase2-have-list p {
	margin: 0;
	font: 400 24px/20px "Zain", sans-serif;
	color: #381c10;
}

.phase2-missing-heading-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 28px;
	min-height: 60px;
	width: 100%;
}

.phase2-missing-menu {
	margin-top: 0;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #825f5d;
	font: 400 16px/36px "Inter", sans-serif;
	cursor: pointer;
	padding: 0;
	transform: translateY(2px) rotate(-90deg);
}

.phase2-result-script {
	margin: 0;
	font: 400 48px/30px "Cedarville Cursive", cursive;
	color: #800f15;
	width: 100%;
}

.phase2-result-card {
	background: #fff;
	border: 1px solid #381c10;
	border-radius: 3px;
	padding: 24px;
	display: grid;
	gap: 12px;
	width: 100%;
}

.phase2-result-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.phase2-result-main {
	margin: 0;
	font: 400 20px/20.201px "Zain", sans-serif;
	color: #3a2625;
	letter-spacing: -0.1519px;
	white-space: nowrap;
}

.phase2-result-sub {
	margin: 0;
	font: 400 15px/18px "Zain", sans-serif;
	color: #825f5d;
	letter-spacing: -0.1519px;
	white-space: nowrap;
}

.phase2-result-value {
	margin: 0;
	font: 400 20px/20.201px "Zain", sans-serif;
	color: #771013;
	letter-spacing: -0.1519px;
	text-align: right;
	white-space: nowrap;
}

.phase2-result-value-sm {
	font-size: 13px;
	line-height: 13px;
	white-space: normal;
	max-width: 147px;
	text-align: right;
}

.phase2-measurement-popover {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: none;
	flex-direction: column;
	z-index: 10;
	margin-top: 8px;
	min-width: 150px;
}

.phase2-measurement-popover.is-open {
	display: flex;
}

.phase2-popover-option {
	background: none;
	border: none;
	padding: 12px 16px;
	font: 400 16px/1.2 "Zain", sans-serif;
	color: #381c10;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s;
}

.phase2-popover-option:hover {
	background-color: #f5f5f5;
}

.phase2-popover-option:first-child {
	border-radius: 8px 8px 0 0;
}

.phase2-popover-option:last-child {
	border-radius: 0 0 8px 8px;
}

.phase2-missing-heading-wrap {
	position: relative;
}

.phase2-result-card-equipment {
	min-height: 198px;
	margin-bottom: 2px;
}

.phase2-result-continue {
	width: 100%;
	background: #d0764a;
	color: #fff7ed;
	font: 400 27px/20px "Zain", sans-serif;
	padding: 19px 20px 17px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 3px 3px rgba(56, 28, 16, 0.08);
}

.check-panel,
.list-panel {
	background: #fff;
	border: 1.2px solid var(--bg-dark);
	border-radius: 8px;
	padding: 20px;
	display: grid;
	gap: 14px;
}

.check-panel p,
.list-panel p {
	margin: 0;
	font: 400 24px/1.2 "Inter", sans-serif;
}

.list-panel.left {
	text-align: left;
}

.mini-card {
	min-height: 58px;
	border: 1.2px solid #381c10;
	border-radius: 12px;
	background: #fff;
	padding: 10px 12px;
	font: 400 20px/1.2 "Inter", sans-serif;
	align-items: center;
	display: flex;
	gap: 12px;
}

.mini-card input {
	width: 20px;
	height: 20px;
	min-width: 20px;
	cursor: pointer;
}

.mini-card img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
}

.mini-card span {
	flex: 1;
}

.step-progress {
	position: absolute;
	top: 111px;
	left: 32px;
	right: 32px;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4px;
}

.step-progress span {
	height: 10px;
	background: #e3a688;
}

.step-progress .on {
	background: #d0764a;
}

.video-box {
	border: 1.2px solid var(--bg-dark);
	border-radius: 19px;
	width: 100%;
	height: auto;
	min-height: 200px;
	object-fit: cover;
	display: block;
	margin-bottom: 18px;
}

.tips-row {
	min-height: 46px;
	width: 100%;
	background: #d0764a;
	color: #fff7ed;
	box-shadow: var(--shadow-light);
	font: 400 20px/1 "Inter", sans-serif;
}

.split-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.stack-cards {
	display: grid;
	gap: 10px;
}

.bottom-nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 62px;
	padding: 30px;
	z-index: 5;
}

.bottom-nav.dark {
	background: #381C10;
}

.bottom-nav button {
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-help {
	width: 38px;
	height: 38px;
}

.nav-help-ring {
	position: absolute;
	inset: 0;
	width: 42.5px;
	height: 42.5px;
	display: block;
}

.nav-help span {
	position: absolute;
	left: 13px;
	top: 15.25px;
	font: 400 35px/20px "Zain", sans-serif;
	color: #fff7ed;
}

.nav-icon-home {
	width: 38px;
	height: 36.914px;
	display: block;
}

.nav-icon-camera {
	width: 38px;
	height: 34px;
	display: block;
}

.nav-icon-diary {
	width: 38px;
	height: 34px;
	display: block;
}

[data-screen="85-195"] {
	background: #fff7ed;
}

.phase3-reflect-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	background: #381c10;
	padding: 45px 36px 50px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	z-index: 6;
}

.phase3-reflect-header-main {
	position: relative;
	width: 350px;
	height: 32px;
}

.phase3-reflect-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.phase3-reflect-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.phase3-reflect-heading {
	position: absolute;
	left: 31px;
	top: 11px;
	width: 220px;
}

.phase3-reflect-heading p {
	margin: 0;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.phase3-reflect-progress {
	position: absolute;
	left: 281px;
	top: 12px;
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	text-align: right;
}

.phase3-reflect-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.phase3-reflect-fire-wrap {
	width: 24.889px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phase3-reflect-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.phase3-reflect-scroll {
	position: absolute;
	top: 109px;
	left: 0;
	right: 0;
	bottom: 100px;
	overflow-y: auto;
	padding: 0;
}

.phase3-reflect-content {
	padding: 60px 36px 240px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
}

.phase3-reflect-title {
	width: 335px;
	margin: 0;
	font: 400 48px/30px "Cedarville Cursive", cursive;
	color: #800f15;
	text-align: center;
	align-self: center;
}

.phase3-reflect-intro {
	font: 400 24px/29px "Zain", sans-serif;
	color: #381c10;
	letter-spacing: -0.1519px;
	width: 376px;
	min-height: 195px;
}

.phase3-reflect-intro p {
	margin: 0;
}

.phase3-reflect-intro-spacer {
	line-height: 29px;
}

.phase3-reflect-intro-gap {
	margin-top: 0;
}

.phase3-reflect-checklist {
	margin-top: 24px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.phase3-reflect-item {
	width: 255px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.phase3-reflect-item img {
	width: 255px;
	height: 255px;
	object-fit: cover;
	border: 1px solid #381c10;
	border-radius: 19px;
	display: block;
}

.phase3-reflect-item label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #0a0a0a;
	letter-spacing: -0.1519px;
}

.phase3-reflect-item input {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	width: 16.064px;
	height: 16.258px;
	border: 1.01px solid rgba(0, 0, 0, 0.1);
	border-radius: 4.04px;
	background: #f3f3f5;
	box-shadow: 0 1.01px 2.02px rgba(0, 0, 0, 0.05);
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
}

.phase3-reflect-item input:checked {
	background: #f3f3f5;
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 1.01px 2.02px rgba(0, 0, 0, 0.05);
}

.phase3-reflect-item input:checked::after {
	content: "\2713";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #8a3301;
	font: 800 16px/1 "Inter", sans-serif;
}

.phase3-reflect-results {
	width: 368px;
	color: #381c10;
	letter-spacing: -0.1519px;
}

.phase3-reflect-results h3 {
	margin: 0;
	font: 400 45px/50px "Cedarville Cursive", cursive;
	color: #800f15;
}

.phase3-reflect-results p {
	margin: 0;
	font: 400 20px/28px "Zain", sans-serif;
}

.phase3-reflect-improve {
	width: 368px;
	background: #fff;
	border: 1px solid #381c10;
	border-radius: 3px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.phase3-reflect-improve-title {
	margin: 0;
	font: 400 24px/26px "Zain", sans-serif;
	color: #0a0a0a;
}

.phase3-reflect-improve ul {
	margin: 0;
	padding-left: 30px;
	font: 400 20px/27px "Zain", sans-serif;
	letter-spacing: -0.1519px;
	color: #825f5d;
}

.phase3-reflect-complete {
	width: 100%;
	max-width: 376px;
	box-sizing: border-box;
	height: 56px;
	border: 0;
	border-radius: 8px;
	background: #d0764a;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	color: #ffffff;
	cursor: pointer;
	margin-top: 25px;
	padding: 19px 20px 17px;
	text-align: center;
	white-space: nowrap;
}

/* Results Screen Styling (104-1569) */
[data-screen="104-1569"] {
	background: #fff7ed;
}

.results-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	background: #381c10;
	padding: 45px 36px 50px;
	display: flex;
	align-items: flex-start;
	z-index: 6;
	overflow: hidden;
}

.results-header-inner {
	position: relative;
	width: 374.889px;
	height: 32px;
}

.results-header-main {
	position: absolute;
	left: 0;
	top: 0;
	width: 350px;
	height: 32px;
}

.results-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.results-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.results-progress {
	position: absolute;
	left: 300px;
	top: 12px;
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.results-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.results-title {
	position: absolute;
	left: calc(50% - 2.5px);
	top: 11px;
	transform: translateX(-50%);
	margin: 0;
	width: 241px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.results-fire-wrap {
	position: absolute;
	right: 0;
	top: 0;
	width: 24.889px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.results-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.results-scroll {
	position: absolute;
	top: 109px;
	left: 0;
	right: 0;
	bottom: 75px;
	overflow-y: auto;
	padding: 0;
}

.results-content {
	padding: 50px 36px 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
}

.results-message {
	width: 100%;
	max-width: 376px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.results-heading {
	margin: 0;
	font: 400 45px/50px "Cedarville Cursive", cursive;
	color: #800f15;
	text-align: left;
}

.results-success {
	margin: 0;
	font: 400 20px/28px "Zain", sans-serif;
	color: #381c10;
	text-align: left;
}

.results-counter {
	margin: 0;
	font: 400 20px/28px "Zain", sans-serif;
	color: #381c10;
	text-align: left;
}

.results-box {
	width: 100%;
	max-width: 376px;
	background: #fff;
	border: 1px solid #381c10;
	border-radius: 3px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.results-box-title {
	margin: 0;
	font: 400 24px/26px "Zain", sans-serif;
	color:#381c10;
	text-align: center;
	line-height: 1.5
}

.results-tips {
	margin: 0;
	padding-left: 30px;
	font: 400 20px/27px "Zain", sans-serif;
	color: #825f5d;
	letter-spacing: -0.1519px;
}

.results-tips li {
	margin-bottom: 0;
}

.results-complete {
	width: 100%;
	max-width: 376px;
	box-sizing: border-box;
	height: 56px;
	border: 0;
	border-radius: 8px;
	background: #d0764a;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	color: #ffffff;
	cursor: pointer;
	padding: 19px 20px 17px;
	margin-top: 70px;
	text-align: center;
	white-space: nowrap;
}

.results-nav {
	gap: 62px;
	background: #381c10;
}

[data-screen="104-1569"] .results-content {
	padding-bottom: 140px;
}

[data-screen="104-1569"] .results-complete {
	position: absolute;
	left: 36px;
	right: 36px;
	bottom: 125px;
	width: auto;
	max-width: none;
	margin: 0;
	z-index: 7;
}

[data-screen="104-1569"] .results-back-home {
	display: none !important;
}

/* Recipes Screen Styling */
.recipes-screen {
	background: var(--bg-cream);
	padding-top: 0;
}

.recipes-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 45px 36px 50px;
	background: transparent;
	height: 82px;
}

.recipes-header-main {
	position: relative;
	width: 350px;
	height: 32px;
}

.recipes-header .icon-btn,
.recipes-back {
	width: 15px;
	height: 30px;
	background: transparent;
	padding: 0;
	border: 0;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
}

.recipes-header .icon-btn img {
	width: 15px;
	height: 30px;
	display: block;
}

.recipes-progress-wrap {
	position: absolute;
	left: 295px;
	top: 12px;
}

.progress {
	font-family: "Zain", sans-serif;
	font-size: 20px;
	line-height: 20px;
	color: #3a2625;
	margin: 0;
}

.progress span {
	opacity: 0.5;
}

.streak-icon-img {
	width: 24.889px;
	height: 32px;
	display: block;
}

.recipes-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	padding-bottom: 0;
}

.screen[data-screen="91-724"] .screen-scroll {
	padding-bottom: 170px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-y: contain;
	touch-action: pan-y;
	will-change: scroll-position;
}

.recipes-intro {
	padding: 0 36px 24px;
	background: var(--bg-cream);
}

.recipes-title {
	font: 400 48px/1 "Cedarville Cursive", cursive;
	color: var(--wine);
	margin: 0 0 16px;
}

.recipes-desc {
	font: 400 24px/29px "Zain", sans-serif;
	color: #3a2625;
	margin: 0;
	max-width: 394px;
}

.recipes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding: 0 36px;
	background: var(--bg-cream);
	contain: paint;
}

.recipe-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.recipe-empty-slot {
	height: 18px;
	width: 100%;
}

.recipes-footer {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 36px 90px;
	padding-bottom: 50px;
	padding-top: 12px;
	background: var(--bg-cream);
	position: relative;
	z-index: 1;
}

.recipes-last-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	min-height: 0;
	margin-bottom: 12px;
	align-items: start;
}

.recipe-empty-col {
	pointer-events: none;
}

.recipe-img-container {
	position: relative;
	aspect-ratio: 1;
	border: 1.2px solid #381c10;
	border-radius: 19px;
	overflow: hidden;
	background: #fff;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.recipe-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.recipe-item.locked .recipe-img-container {
	opacity: 0.8;
	filter: grayscale(0.3);
}

.recipe-item.locked .recipe-img-container::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(144.4deg, rgba(208, 118, 74, 0.5) 1.5%, rgba(138, 51, 1, 0.5) 110.8%);
	border-radius: 19px;
}

.recipe-label {
	font: 400 20px/20px "Zain", sans-serif;
	color: #be6537;
	margin: 0;
	display: flex;
	gap: 4px;
	align-items: center;
	letter-spacing: -0.15px;
	min-height: 20px;
}

.recipes-last-row .recipe-label {
	visibility: visible;
	opacity: 1;
	display: flex;
	color: #be6537;
}

.lock-icon {
	font-size: 20px;
	color: #8a3301;
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	overflow: hidden;
	text-indent: -9999px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M9.5 5.2H9V3.8a3 3 0 10-6 0v1.4h-.5a1 1 0 00-1 1V10a1 1 0 001 1h7a1 1 0 001-1V6.2a1 1 0 00-1-1zm-5-1.4a1.5 1.5 0 113 0v1.4h-3V3.8zm5 6.2h-7V6.2h7V10z' fill='%238a3301'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}

.btn-continue {
	background: #d0764a;
	color: #fff;
	margin: 50px 0 0;
	padding: 19px 20px 17px;
	font: 400 27px/20px "Zain", sans-serif;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	width: 100%;
	box-shadow: 0px 3px 3px rgba(138, 51, 1, 0.28);
	transition: background-color 120ms ease;
	display: block;
	position: relative;
	z-index: 7;
}

.continue-btn {
	background: #d0764a;
	color: #fff;
	box-shadow: 0px 3px 3px rgba(138, 51, 1, 0.28);
	transition: background-color 120ms ease;
}

.recipes-screen .btn-continue:active,
.recipes-screen .btn-continue.is-clicked,
.recipes-screen .continue-btn:active,
.recipes-screen .continue-btn.is-clicked {
	background: #d0764a;
	color: #fff;
	border-radius: 8px;
	box-shadow: 0px 3px 3px rgba(138, 51, 1, 0.28);
}

/* Congratulations Screen Styling */
.congrats-screen {
	background: linear-gradient(-46.75880947500667deg, #8a3301 17.013%, #bf6538 116.91%);
	padding-top: 0;
}

.congrats-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 109px;
	padding: 45px 36px 50px;
	background: #381c10;
	z-index: 8;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

.congrats-header-inner {
	position: relative;
	width: 374.889px;
	height: 32px;
}

.congrats-header-main {
	position: absolute;
	left: 0;
	top: 0;
	width: 350px;
	height: 32px;
}

.congrats-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.congrats-back img {
	width: 15px;
	height: 30px;
	display: block;
}

.congrats-progress {
	position: absolute;
	left: 300px;
	top: 12px;
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.congrats-progress span {
	color: rgba(255, 247, 237, 0.3);
}

.congrats-title {
	position: absolute;
	left: calc(50% + 101px);
	top: 11px;
	transform: translateX(-50%);
	margin: 0;
	width: 448px;
	font: 400 24px/20px "Zain", sans-serif;
	color: #fff7ed;
	white-space: nowrap;
}

.congrats-fire-wrap {
	position: absolute;
	right: 0;
	top: 0;
	width: 24.889px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.congrats-fire {
	width: 24.889px;
	height: 32px;
	display: block;
}

.congrats-scroll {
	position: absolute;
	top: 109px;
	bottom: 75px;
	left: 0;
	width: 100%;
	overflow-y: auto;
}

.congrats-content {
	padding: 70px 36px 245px;
	display: flex;
	flex-direction: column;
	gap: 26px;
	align-items: stretch;
}

.congrats-image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 205px;
	width: 100%;
}

.congrats-image-frame {
	position: relative;
	width: 320px;
	height: 205px;
	overflow: hidden;
}

.congrats-image {
	height: 205px;
	width: 320px;
	display: block;
}

.congrats-image-node655 {
	position: absolute;
	width: 119.92%;
	height: 156.1%;
	left: -7.62%;
	top: -24.39%;
	max-width: none;
}

.congrats-heading {
	width: 100%;
	margin: 0;
	font: 400 48px/30px "Cedarville Cursive", cursive;
	color: #fff7ed;
	text-align: center;
}

.congrats-recap {
	width: 100%;
	margin: 0;
	font: 400 24px/29px "Zain", sans-serif;
	color: #fff7ed;
	letter-spacing: -0.1519px;
}

.congrats-box {
	width: 100%;
	background: #fff;
	border: 1px solid #381c10;
	border-radius: 8px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.congrats-box-title {
	margin: 0;
	font: 400 24px/26px "Zain", sans-serif;
	color: #0a0a0a;
	text-align: left;
}

.congrats-list {
	margin: 0;
	padding: 0;
	font: 400 20px/32px "Zain", sans-serif;
	color:#381c10;
	letter-spacing: -0.1519px;
}

.congrats-list p {
	margin: 0;
	padding-left: 0;
}

.congrats-photo-text {
	width: 100%;
	text-align: left;
}

.congrats-before {
	margin: 0;
	font: 400 24px/58px "Zain", sans-serif;
	color: #fff7ed;
}

.congrats-snap {
	margin: 0;
	font: 400 45px/58px "Cedarville Cursive", cursive;
	color: #fff7ed;
}

.congrats-description {
	width: 100%;
	margin: 0;
	font: 400 24px/29px "Zain", sans-serif;
	color: #fff7ed;
	letter-spacing: -0.1519px;
}

.congrats-complete {
	width: 100%;
	height: 56px;
	border: 0;
	border-radius: 8px;
	background: #ffeaae;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	color: #381c10;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	padding: 19px 20px 17px;
}

.congrats-nav {
	gap: 62px;
	background: #381c10;
}

/* Home Week 1 Screen Styling */
.home-week1-screen {
	background: #fff7ed;
	padding-top: 0;
}

.home-week1-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	display: flex;
	align-items: flex-start;
	padding: 45px 36px 50px;
	overflow: hidden;
}

.home-week1-back {
	height: 30px;
	width: 15px;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.home-week1-back img {
	width: 100%;
	height: 100%;
}

.home-week1-progress {
	position: absolute;
	left: 360px;
	top: 57px;
	transform: translateX(-100%);
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #3a2625;
}



.home-week1-fire {
	height: 32px;
	width: 24.889px;
	margin-left: auto;
}

.home-week1-scroll {
	position: absolute;
	top: 100px;
	bottom: 100px;
	left: 0;
	width: 100%;
	overflow-y: auto;
}

.home-week1-content {
	padding-bottom: 200px;
	padding: 34px 36px 200px 36px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 26px;
	align-items: flex-start;
	overflow-x: hidden;
}

.home-week1-greeting-wrap {
	padding-top: 34px;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	box-sizing: border-box;
}

.home-week1-greeting-text {
	width: 394px;
	margin: 0;
	font: 400 0/0 "Cedarville Cursive", cursive;
	color: #800f15;
	letter-spacing: 0;
	white-space: nowrap;
}

.home-week1-greeting-hello,
.home-week1-greeting-space,
.home-week1-greeting-name {
	font-family: "Zain", sans-serif;
	font-size: 48px;
	line-height: 30px;
	font-weight: 400;
	color: #800f15;
}

.home-week1-greeting-name {
	font-family: "Cedarville Cursive", cursive;
}

.home-week1-greeting {
	width: 376px;
	max-width: 100%;
	margin: 0;
	font: 400 48px/30px "Zain", sans-serif;
	color: #800f15;
	text-align: left;
}

.home-week1-name {
	font-family: "Cedarville Cursive", cursive;
	font-size: 48px;
}

.home-week1-image-wrap {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 369/350;
	overflow: hidden;
	position: relative;
}

.home-week1-image {
	position: absolute;
	top: 0;
	left: -1.9%;
	width: 101.9%;
	height: 99.93%;
	max-width: none;
}

.home-week1-level {
	width: 376px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-week1-level h3 {
	margin: 0;
	font: 400 36px/36px "Zain", sans-serif;
	color: #381c10;
}

.home-week1-level > p {
	margin: 0;
	font: 400 20px/20px "Zain", sans-serif;
	color: #381c10;
}

.progress-bar {
	width: 100%;
	height: 27px;
	background: #ffffff;
	border: 1px solid #381c10;
	border-radius: 26843500px;
	overflow: hidden;
}

.progress-fill {
	width: 78.4px;
	height: 100%;
	background: #d0764a;
	flex-shrink: 0;
}

.home-week1-weeks {
	width: 376px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.week-item {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1.6px solid #525252;
	border-radius: 10px;
	padding: 17.6px;
	display: flex;
	gap: 16px;
	align-items: center;
}

.week-item.week-done {
	border-color: #d0764a;
}

.week-icon {
	width: 48px;
	height: 48px;
	border-radius: 26843500px;
	background: #fff;
	border: 1.6px solid #381c10;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.week-item.week-done .week-icon {
	background: #d0764a;
	border-color: #d0764a;
}

.week-icon img {
	width: 28px;
	height: 28px;
}

.week-info {
	flex: 1;
}

.week-info h4 {
	margin: 0;
	font: 700 18px/24px "Zain", sans-serif;
	color: #381c10;
}

.week-info p {
	margin: 0;
	font: 400 18px/20px "Zain", sans-serif;
	color: #381c10;
}

.week-badge {
	width: 79.125px;
	height: 25.587px;
	padding: 4px 12px;
	border-radius: 4px;
	border: 0.8px solid #525252;
	font: 400 12px/16px "Zain", sans-serif;
	white-space: nowrap;
	flex-shrink: 0;
	background: #ffeaae;
	color: #381c10;
}

.week-item.week-done .week-badge {
	width: 52.775px;
	background: rgba(0, 201, 80, 0.2);
	border-color: rgba(0, 201, 80, 0.5);
	color: #05df72;
	padding: 4px 12px;
}

.home-week1-btn {
	width: 376px;
	max-width: 100%;
	height: 56px;
	border: 0;
	border-radius: 8px;
	background: #d0764a;
	box-shadow: 0 3px 3px rgba(138, 51, 1, 0.28);
	font: 400 27px/20px "Zain", sans-serif;
	color: #fff;
	cursor: pointer;
	text-align: center;
	padding: 19px 20px 17px;
	margin-bottom: 25px;
	margin-top: 25px;
}

.home-week1-nav {
	gap: 62px;
	background: #381c10;
}

/* Camera Screen Styling */
.camera-screen {
	background: #d0764a;
	padding-top: 0;
}

.camera-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 82px;
	display: flex;
	align-items: flex-start;
	padding: 45px 36px 50px;
}

.camera-back-hit {
	position: relative;
	left: 0;
	top: 0;
	width: 15px;
	height: 30px;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.camera-back-vector {
	position: relative;
	width: 15px;
	height: 30px;
	flex-shrink: 0;
}

.camera-back-vector-inner {
	position: absolute;
	inset: -6.67% -13.33% -6.67% -18.86%;
}

.camera-back-vector-img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
}

.camera-container {
	position: absolute;
	top: 130px;
	left: 42px;
	right: 36px;
	width: auto;
	height: 514px;
	background: #000;
	border-radius: 0;
	overflow: hidden;
}

.camera-feed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.camera-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.camera-container.is-frozen .camera-canvas {
	display: block;
}

.camera-container.is-frozen .camera-feed {
	opacity: 0;
}

.camera-controls {
	position: absolute;
	bottom: 110px;
	left: 0;
	right: 0;
	display: flex;
	gap: 61px;
	align-items: center;
	justify-content: center;
	padding-right: 117px;
	padding-bottom: 5px;
}

.camera-btn {
	height: 72px;
	width: 72px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.camera-capture {
	background: #381c10;
}

.camera-capture img {
	height: 51px;
	width: 55px;
	object-fit: contain;
}

.camera-preview {
	width: 65px;
	height: 65px;
	background: #d9d9d9;
	border-radius: 17px;
	background-size: cover;
	background-position: center;
}

#camera-capture-btn {
	position: static;
	transform: none;
}

.camera-nav {
	gap: 62px;
	background: #381c10;
}

.btn-continue.is-clicked,
.continue-btn:active,
.continue-btn.is-clicked {
	background: #d0764a;
}

@media (max-width: 520px) {
	.app-shell {
		padding: 0;
	}

	.phone {
		width: 100vw;
		height: 100vh;
		border: 0;
		border-radius: 0;
	}
}
