:root {
	color-scheme: light;
	--bg: #f2f2f6;
	--surface: #ffffff;
	--surface-2: #fff7eb;
	--ink: #111111;
	--muted: #6f6b77;
	--line: #dcdce6;
	--line-strong: #9993ab;
	--purple: #b44cff;
	--purple-dark: #7a10ff;
	--blue: #245dff;
	--orange: #ffad47;
	--orange-dark: #ff8b00;
	--shadow: 0 24px 55px rgba(18, 13, 40, 0.12);
	--shadow-soft: 0 10px 24px rgba(18, 13, 40, 0.12);
	--radius-xl: 34px;
	--radius-lg: 26px;
	--radius-md: 18px;
	--phone-width: 390px;
	--title-font: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background:
		radial-gradient(circle at top, rgba(180, 76, 255, 0.08), transparent 28%),
		radial-gradient(circle at bottom right, rgba(36, 93, 255, 0.08), transparent 26%),
		var(--bg);
}

body {
	margin: 0;
	min-height: 100%;
	font-family: "Inter", Arial, sans-serif;
	color: var(--ink);
	overflow: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 20% 20%, rgba(180, 76, 255, 0.05), transparent 24%),
		radial-gradient(circle at 80% 80%, rgba(36, 93, 255, 0.05), transparent 26%);
	opacity: 0.8;
}

.prototype {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.screen {
	width: 100%;
	min-height: calc(100vh - 36px);
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.phone {
	width: min(100%, var(--phone-width));
	height: min(calc(100vh - 36px), 900px);
	background: var(--surface);
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	position: relative;
}

.phone__topbar {
	height: 56px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(180deg, #bf67ff 0%, #b34fff 100%);
	color: #111;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.phone__topbar.is-title-left {
	justify-content: flex-start;
	padding-left: 50px;
}

.phone__topbar--phase {
	justify-content: center;
	padding-left: 16px;
	padding-right: 16px;
}

.phone__topbar--phase .phone__title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.phone__back,
.phone__ghost {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	padding: 6px;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #161616;
	transition: transform 150ms ease, opacity 150ms ease;
}

.phone__back:hover,
.phone__ghost:hover {
	transform: translateY(-50%) scale(1.05);
}

.phone__title {
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
}

.phone__body {
	padding: 22px 18px 24px;
	flex: 1;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(120, 120, 130, 0.65) rgba(0, 0, 0, 0.04);
	overscroll-behavior: contain;
}

.phone--phase .phone__body {
	padding: 18px 18px 20px;
	text-align: center;
}

.phone--detail .phone__body {
	padding: 16px 14px 18px;
	overflow-y: auto;
}

.phone__topbar--detail {
	justify-content: center;
	padding-left: 16px;
	padding-right: 16px;
	background: linear-gradient(180deg, #ff33d6 0%, #ff24d5 100%);
}

.phone__topbar--detail .phone__title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 500;
}

.detail-body {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.detail-progress-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 2px;
}

.detail-progress {
	flex: 1;
	margin: 0;
}

.detail-progress-value {
	font-size: 13px;
	color: #2d2d34;
	min-width: 28px;
	text-align: right;
}

.detail-title {
	margin: 4px 0 0;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 26px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #f225d4;
	text-align: left;
}

.detail-copy {
	margin: 0;
	font-size: 13px;
	line-height: 1.42;
	color: #2a2a31;
}

.detail-image-card {
	width: 100%;
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 16px 20px rgba(0, 0, 0, 0.12);
	background: #ffffff;
	padding: 10px;
}

.detail-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
}

.screen#screen-6 .detail-image-card {
	height: auto;
	padding: 0;
	background: #ffffff;
}

.screen#screen-6 .detail-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
	transform: none;
}

.screen#screen-7 .detail-image-card {
	height: auto;
	padding: 0;
	background: #ffffff;
	box-shadow: none;
}

.screen#screen-7 .detail-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
	transform: none;
}

.screen#screen-8 .detail-image-card {
	height: auto;
	padding: 0;
	background: #ffffff;
}

.screen#screen-8 .detail-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
	transform: none;
}

/* Keep pages 6-8 scrollable inside the phone on short-height devices. */
.screen#screen-6,
.screen#screen-7,
.screen#screen-8 {
	min-height: calc(100vh - 36px);
	align-items: center;
	justify-content: center;
	padding-top: 0;
}

.screen#screen-6 .phone,
.screen#screen-7 .phone,
.screen#screen-8 .phone {
	height: min(calc(100vh - 36px), 900px);
	max-height: 900px;
}

.screen#screen-6 .phone__body,
.screen#screen-7 .phone__body,
.screen#screen-8 .phone__body {
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.detail-key-title {
	margin-top: 2px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 18px;
	color: #ff27d8;
	text-align: left;
}

.detail-features {
	margin: -4px 0 0 18px;
	padding: 0;
	font-size: 12px;
	line-height: 1.35;
	color: #2a2a31;
	text-align: left;
}

.detail-features li + li {
	margin-top: 4px;
}

.detail-accordion-group {
	display: grid;
	gap: 8px;
	margin-top: 2px;
}

.accordion {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
	background: #f49dd0;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion__toggle {
	width: 100%;
	padding: 8px 10px;
	border: 0;
	background: #f5a1d1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	color: #121212;
	text-align: left;
}

.accordion__chev {
	font-size: 16px;
	line-height: 1;
	transition: transform 160ms ease;
}

.accordion__panel {
	display: none;
	padding: 8px 10px 12px;
	background: #ea6bb8;
	color: #111;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

.accordion.is-open .accordion__panel {
	display: block;
}

.accordion.is-open .accordion__chev {
	transform: rotate(180deg);
}

.phase-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.phase-row {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: #202020;
	margin-top: 6px;
}

.phase-divider {
	width: 100%;
	height: 1px;
	background: #eceaf2;
	margin-top: -2px;
}

.phase-title {
	margin: 8px 0 4px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 30px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #e020d2;
	text-align: left;
	width: 100%;
}

.phase-image-card {
	width: 100%;
	max-width: 168px;
	aspect-ratio: 1;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.04);
	margin: 4px auto 10px;
}

.phase-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.phase-cta {
	width: min(100%, 210px);
	height: 42px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(90deg, #ff23d8 0%, #c320ff 100%);
	box-shadow: 0 10px 18px rgba(201, 24, 216, 0.24);
	color: #fff;
	font-family: var(--title-font);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.phase-skip {
	width: min(100%, 120px);
	height: 28px;
	border: 0;
	border-radius: 12px;
	background: #ececec;
	color: #a7a7a7;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.phase-cta:hover,
.phase-skip:hover {
	transform: translateY(-1px);
}

.detail-body .primary-btn {
	margin-top: 10px;
	height: 40px;
	font-size: 18px;
	border-radius: 12px;
}

.other-body {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.other-title {
	margin: 6px 0 2px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 42px;
	line-height: 0.98;
	letter-spacing: -0.02em;
	color: #ff25d7;
	text-align: left;
}

.other-accordion-group {
	display: grid;
	gap: 8px;
	margin-top: 2px;
}

.other-accordion-group .accordion {
	background: #f6a2d2;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
}

.other-accordion-group .accordion__toggle {
	padding: 10px 14px;
	background: #ec95cd;
	font-size: 20px;
	line-height: 1;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
}

.other-accordion-group .accordion__panel {
	background: #e368b6;
	font-size: 15px;
	line-height: 1.45;
	padding: 10px 14px 12px;
	text-align: center;
}

.other-body .footer-nav {
	margin-top: 10px;
}

.screen#screen-9 .footer-nav {
	grid-template-columns: 1fr 1.75fr;
	gap: 16px;
	margin-top: 14px;
	align-items: center;
}

.screen#screen-9 .footer-nav .nav-btn,
.screen#screen-9 .footer-nav .primary-btn {
	height: 62px;
	border-radius: 22px;
	font-size: 16px;
	line-height: 1;
	font-weight: 800;
	margin-top: 0;
}

.screen#screen-9 .footer-nav .nav-btn {
	background: #e7e7ef;
	color: #1d1d24;
	box-shadow: none;
}

.screen#screen-9 .footer-nav .primary-btn {
	background: linear-gradient(90deg, #a73ff6 0%, #2d57ed 100%);
	box-shadow: 0 10px 18px rgba(45, 87, 237, 0.22);
}

.phase-cta--compact {
	height: 48px;
	width: min(100%, 210px);
	font-size: 38px;
	line-height: 1;
	margin-top: 6px;
}

.phone--green .phone__body {
	padding: 14px 12px 16px;
}

.phone__topbar--green {
	justify-content: center;
	padding-left: 16px;
	padding-right: 16px;
	background: #379b3e;
	color: #111;
}

.phone__topbar--green .phone__title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 500;
}

.green-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.green-body .progress__bar.is-active {
	background: linear-gradient(90deg, #7ef06d, #5fdc55);
}

.green-title {
	margin: 4px 0 0;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 40px;
	line-height: 0.96;
	letter-spacing: -0.02em;
	color: #379b3e;
	text-align: left;
}

.green-title--phase {
	font-size: 52px;
	line-height: 0.92;
}

.green-hero-image {
	width: 100%;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.14);
	margin-top: 4px;
}

.green-hero-image img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
}

.green-tip {
	background: #98d39f;
	border-radius: 18px;
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 8px;
	padding: 8px;
	align-items: center;
	border: 1px solid rgba(40, 133, 53, 0.22);
}

.green-tip__badge {
	background: #53db5d;
	color: #111;
	border-radius: 12px;
	font-weight: 700;
	font-size: 22px;
	height: 100%;
	display: grid;
	place-items: center;
}

.green-tip p {
	margin: 0;
	font-size: 11px;
	line-height: 1.3;
	color: #111;
	text-align: left;
}

.green-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 2px;
}

.green-card {
	border: 0;
	background: #50db5f;
	border-radius: 14px;
	padding: 8px 8px 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	display: grid;
	gap: 6px;
	justify-items: center;
}

.green-card.is-selected {
	box-shadow: 0 0 0 4px #1a97ff, 0 3px 8px rgba(0, 0, 0, 0.18);
}

.green-card__image {
	width: 66px;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	background: #f7f7f7;
	display: grid;
	place-items: center;
}

.green-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.green-card__label {
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 14px;
	line-height: 1;
	color: #111;
	text-align: center;
}

.green-cta {
	width: 100%;
	height: 76px;
	margin: 10px auto 0;
	border: 0;
	border-radius: 22px;
	background: #26c645;
	color: #fff;
	text-align: center;
	font-family: var(--title-font);
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.07px;
	white-space: nowrap;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.green-skip {
	width: min(100%, 120px);
	height: 28px;
	margin: 8px auto 0;
	border: 0;
	border-radius: 10px;
	background: #e6e6e6;
	color: #9d9d9d;
	font-size: 14px;
	cursor: pointer;
}

.phone--yellow .phone__body {
	padding: 14px 12px 16px;
}

.phone__topbar--yellow {
	justify-content: center;
	padding-left: 16px;
	padding-right: 16px;
	background: #efb100;
	color: #111;
}

.phone__topbar--yellow .phone__title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 500;
}

.yellow-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.yellow-body .progress__bar.is-active {
	background: linear-gradient(90deg, #2ea5ff, #2a8eff);
}

.yellow-title {
	margin: 4px 0 2px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 46px;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: #e6a300;
	text-align: center;
}

.yellow-title--done {
	text-align: left;
	font-size: 56px;
	line-height: 0.9;
}

.yellow-done-card {
	width: 100%;
	max-width: 184px;
	margin: 6px auto 2px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	padding: 0;
}

.yellow-done-card img {
	width: 100%;
	height: auto;
	display: block;
}

.yellow-accordion-group {
	display: grid;
	gap: 8px;
	margin-top: 2px;
}

.yellow-accordion {
	background: #efb100;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.yellow-accordion__toggle {
	padding: 10px 14px;
	background: #f0ba00;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 19px;
	line-height: 1;
	color: #111;
}

.yellow-accordion__panel {
	background: #e0a600;
	padding: 10px 12px 12px;
	text-align: center;
	font-size: 13px;
	line-height: 1.45;
	color: #111;
}

.yellow-item-image {
	width: 100%;
	height: 104px;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 8px;
}

.yellow-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yellow-accordion__panel h3 {
	margin: 0 0 4px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 18px;
	line-height: 1;
	color: #111;
}

.yellow-accordion__panel p {
	margin: 0;
	font-size: 13px;
	line-height: 1.42;
	color: #111;
}

.yellow-cta {
	width: min(100%, 228px);
	height: 52px;
	margin: 8px auto 0;
	border: 0;
	border-radius: 14px;
	background: #f0c13a;
	color: #fff;
	font-family: var(--title-font);
	font-size: 42px;
	line-height: 1;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
	cursor: pointer;
}

.yellow-download {
	width: min(100%, 236px);
	height: 48px;
	margin: 4px auto 0;
	border: 0;
	border-radius: 12px;
	background: #847877;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
}

.certificate-sheet {
	border: 4px solid #222;
	background: #fff;
	padding: 8px 10px;
	text-align: center;
	margin-top: 2px;
}

.certificate-sheet__check {
	font-size: 56px;
	line-height: 1;
	color: #22d142;
	font-weight: 800;
}

.certificate-sheet h3 {
	margin: 4px 0 2px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 52px;
	line-height: 0.95;
	color: #d79e00;
}

.certificate-sheet__sub {
	margin: 2px 0;
	font-size: 10px;
	color: #555;
}

.certificate-sheet__label {
	margin: 5px 0;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 48px;
	line-height: 1;
	color: #e987bf;
}

.certificate-sheet__main {
	margin: 2px 0;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 56px;
	line-height: 0.94;
	color: #2ea63c;
}

.certificate-sheet__main--multi {
	color: #3a2ed8;
}

.certificate-sheet__date {
	margin-top: 5px;
	font-size: 11px;
	color: #555;
	padding-top: 3px;
	border-top: 1px solid #ddd;
}

.yellow-skills-list {
	margin: 0;
	padding-left: 16px;
	text-align: left;
	font-size: 11px;
	line-height: 1.35;
	color: #111;
}

.yellow-skills-list li + li {
	margin-top: 4px;
}

.screen#screen-16 .phone {
	background: #f2f2f2;
}

.screen#screen-16 .phone__body {
	padding: 14px 18px 20px;
	gap: 12px;
}

.screen#screen-16 .step-label {
	margin: 0;
	font-size: 34px;
	line-height: 1;
	color: #202020;
}

.screen#screen-16 .detail-progress-row--certificate {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	align-items: end;
	margin-top: -2px;
}

.screen#screen-16 .certificate-progress {
	height: 6px;
	border-radius: 999px;
	background: #e6bf55;
}

.screen#screen-16 .detail-progress-value {
	font-size: 32px;
	line-height: 1;
	color: #111;
	min-width: 64px;
	text-align: right;
}

.screen#screen-16 .certificate-sheet {
	border: 6px solid #111;
	background: #f7f7f7;
	padding: 14px 14px 12px;
	text-align: center;
	margin-top: 2px;
	box-shadow: none;
}

.screen#screen-16 .certificate-sheet__check {
	width: 64px;
	height: 64px;
	margin: 2px auto 8px;
	border: 7px solid #22d336;
	border-radius: 999px;
	display: grid;
	place-items: center;
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	color: #22d336;
	padding-top: 1px;
}

.screen#screen-16 .certificate-sheet h3 {
	margin: 0;
	font-family: var(--title-font);
	font-size: 74px;
	line-height: 0.95;
	font-weight: 400;
	letter-spacing: 0.07px;
	color: #cd9800;
}

.screen#screen-16 .certificate-sheet__sub {
	margin: 8px 0;
	font-size: 12px;
	line-height: 1.25;
	color: #222;
	text-align: center;
}

.screen#screen-16 .certificate-sheet__line {
	height: 3px;
	background: #1f1f1f;
	width: 82%;
	margin: 8px auto;
}

.screen#screen-16 .certificate-sheet__label {
	margin: 6px 0;
	font-family: "Brush Script MT", "Segoe Script", cursive;
	font-size: 80px;
	line-height: 0.96;
	font-weight: 400;
	background: linear-gradient(90deg, #ff1a4f 0%, #8d2cff 52%, #ff4dc4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.screen#screen-16 .certificate-sheet__main {
	margin: 2px 0;
	font-family: var(--title-font);
	font-size: 74px;
	line-height: 0.94;
	font-weight: 400;
	letter-spacing: 0.07px;
	color: #2ea63c;
}

.screen#screen-16 .certificate-sheet__main--multi {
	margin-top: 0;
	color: #3a2ed8;
}

.screen#screen-16 .rainbow-text {
	background: linear-gradient(90deg, #ff2b0a 0%, #c58d00 18%, #00d52d 38%, #14a39c 56%, #2f43e2 74%, #ce19d3 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.screen#screen-16 .certificate-sheet__date {
	margin-top: 6px;
	padding-top: 0;
	border-top: 0;
	font-size: 12px;
	line-height: 1;
	color: #222;
}

.screen#screen-16 .certificate-note {
	margin: 2px 0 4px;
	font-size: 11px;
	line-height: 1.3;
	color: #5f6171;
	text-align: center;
}

.screen#screen-16 .yellow-accordion {
	background: #d3a500;
	border: 0;
	border-radius: 16px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

.screen#screen-16 .yellow-accordion__toggle {
	padding: 12px 18px;
	background: #efb100;
	font-family: var(--title-font);
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.07px;
	color: #111;
}

.screen#screen-16 .yellow-accordion__panel {
	background: #d3a500;
	padding: 12px 14px 14px;
	text-align: left;
}

.screen#screen-16 .yellow-skills-list {
	list-style: none;
	padding: 0 0 0 6px;
	margin: 0;
	font-size: 11px;
	line-height: 1.35;
	color: #111;
	display: grid;
	gap: 8px;
}

.screen#screen-16 .yellow-skills-list li {
	position: relative;
	padding-left: 16px;
}

.screen#screen-16 .yellow-skills-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 12px;
	line-height: 1;
	color: #111;
	font-weight: 700;
}

.screen#screen-16 .yellow-download {
	width: 100%;
	height: 48px;
	margin: 8px auto 0;
	border-radius: 14px;
	background: #7a6c6c;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.screen#screen-16 .download-icon {
	font-size: 20px;
	line-height: 1;
	transform: translateY(-1px);
}

.screen#screen-16 .yellow-cta {
	width: 100%;
	height: 52px;
	margin-top: 8px;
	border-radius: 14px;
	background: linear-gradient(90deg, #edab00 0%, #ffcf46 100%);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.16);
	color: #fff;
	font-family: var(--title-font);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.07px;
}

/* WebKit scrollbar styling for internal page scrollers. */
.phone__body::-webkit-scrollbar {
	width: 8px;
}

.phone__body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.04);
	border-radius: 999px;
}

.phone__body::-webkit-scrollbar-thumb {
	background: rgba(120, 120, 130, 0.65);
	border-radius: 999px;
}

.phone__body::-webkit-scrollbar-thumb:hover {
	background: rgba(105, 105, 115, 0.85);
}

.screen--intro .phone,
.screen--dense .phone,
.screen--certificate .phone,
.screen--finish .phone {
	margin: auto;
}

.screen-caption {
	width: min(100%, var(--phone-width));
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 500;
	color: #bdbdbd;
	text-align: left;
	padding-left: 2px;
}

.intro-body {
	padding-top: 0;
}

.eyebrow,
.step-label {
	font-size: 13px;
	line-height: 1.35;
	color: #222;
	margin-bottom: 10px;
}

.progress {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.progress__bar {
	height: 5px;
	border-radius: 999px;
	background: #f0f0f4;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.progress__bar.is-active {
	background: linear-gradient(90deg, #969cff, #ad74ff);
}

.hero-copy {
	text-align: center;
	margin: 8px 0 18px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 26px;
	line-height: 0.95;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.hero-copy.is-wide {
	font-size: 28px;
	line-height: 0.92;
}

.intro-promo {
	display: grid;
	justify-items: start;
	gap: 16px;
	margin: 8px 0 16px;
}

.welcome-pill {
	min-width: 178px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	color: #7b2dff;
	background: linear-gradient(90deg, rgba(183, 138, 255, 0.2), rgba(82, 171, 255, 0.24));
}

.intro-progress {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.intro-line {
	height: 10px;
	border-radius: 999px;
	background: #e3e3e3;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.intro-line.is-active {
	background: linear-gradient(90deg, #8f98ff 0%, #9da2ff 100%);
}

.intro-banner {
	width: 100%;
	aspect-ratio: 1.09;
	border: 3px solid #1f9aff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
	background: #000;
	margin: 10px 0 18px;
}

.intro-banner img,
.media-card img,
.option-card img,
.summary-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.intro-lead {
	margin: 0 0 16px;
	text-align: center;
	font-size: 15px;
	line-height: 1.5;
	color: #141414;
}

.intro-mark-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	margin: 8px 0 18px;
}

.intro-mark-title {
	margin: 0;
	text-align: center;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 24px;
	line-height: 0.96;
	color: #7a10ff;
	letter-spacing: -0.01em;
}

.intro-mark {
	width: 92px;
	height: 70px;
	color: #a34bff;
	justify-self: center;
}

.intro-form {
	display: grid;
	gap: 16px;
	margin-top: 8px;
}

.intro-input {
	width: 100%;
	height: 58px;
	border: 2px solid #595561;
	border-radius: 18px;
	padding: 0 16px;
	font-size: 16px;
	font-family: "Inter", Arial, sans-serif;
	color: #17171d;
	outline: none;
}

.intro-input::placeholder {
	color: #a9a7b1;
}

.intro-input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(36, 93, 255, 0.12);
}

.intro-submit {
	height: 92px;
	border-radius: 18px;
	background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);
	box-shadow: 0 16px 22px rgba(36, 93, 255, 0.2);
	color: #fff;
	font-family: var(--title-font);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	border: 0;
	transition: transform 150ms ease;
}

.intro-submit:hover {
	transform: translateY(-1px);
}

.section-note {
	margin: 0 0 16px;
	text-align: center;
	font-size: 15px;
	line-height: 1.5;
	color: #1e1e25;
}

.choice-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin: 18px 0 22px;
}

.option-card {
	border: 0;
	border-radius: 24px;
	padding: 18px 18px 20px;
	background: linear-gradient(180deg, #ff9b00 0%, #ffc558 100%);
	box-shadow: 0 4px 0 rgba(159, 110, 13, 0.25), 0 8px 16px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	text-align: center;
	color: var(--ink);
	transition: transform 160ms ease, box-shadow 160ms ease, outline-color 160ms ease;
}

.option-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 0 rgba(159, 110, 13, 0.25), 0 12px 22px rgba(0, 0, 0, 0.16);
}

.option-card.is-selected {
	outline: 3px solid var(--purple);
	outline-offset: 2px;
}

.option-card__image {
	width: 120px;
	height: 120px;
	margin: 0 auto 12px;
	border-radius: 16px;
	overflow: hidden;
	border: 3px solid #1f9aff;
	box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
	background: #fff;
}

.option-card__label {
	margin: 0;
	font-family: var(--title-font);
	font-size: 24px;
	line-height: 1;
	letter-spacing: -0.01em;
}

.option-card__sub {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.35;
	color: #141414;
}

.option-card__example {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(20, 20, 20, 0.9);
}

.option-card--wide .option-card__image {
	width: min(100%, 140px);
	height: 100px;
}

.option-card--tall .option-card__image {
	height: 130px;
}

.option-card--small .option-card__image {
	width: 100px;
	height: 100px;
}

.option-card--image-only {
	padding-top: 12px;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin: 18px 0 18px;
}

.media-card {
	border-radius: 22px;
	overflow: hidden;
	background: #ececf3;
	box-shadow: var(--shadow-soft);
	height: 190px;
	position: relative;
}

.media-card--hero {
	height: 210px;
}

.media-card__caption {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.75);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 16px;
}

.info-card {
	border-radius: 20px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 8px 18px rgba(18, 13, 40, 0.06);
	text-align: left;
}

.info-card__title {
	margin: 0 0 4px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 22px;
	line-height: 1;
}

.info-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
}

.summary-panel {
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(180, 76, 255, 0.08), rgba(36, 93, 255, 0.08));
	border: 1px solid rgba(180, 76, 255, 0.15);
	padding: 18px;
	margin: 14px 0 18px;
	box-shadow: 0 12px 20px rgba(18, 13, 40, 0.06);
}

.summary-panel__title {
	margin: 0 0 10px;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 24px;
	line-height: 1;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--line);
	font-size: 12px;
	font-weight: 600;
}

.footer-nav {
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 12px;
	margin-top: 4px;
}

.footer-nav--single {
	grid-template-columns: 1fr;
}

.nav-btn,
.primary-btn,
.ghost-btn {
	appearance: none;
	border: 0;
	border-radius: 16px;
	height: 54px;
	padding: 0 18px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease, background 150ms ease;
}

.footer-nav .nav-btn,
.footer-nav .primary-btn,
.footer-nav .ghost-btn {
	font-family: var(--title-font);
	color: #fff;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.07px;
}

.nav-btn:hover,
.primary-btn:hover,
.ghost-btn:hover {
	transform: translateY(-1px);
}

.nav-btn:disabled,
.primary-btn:disabled,
.ghost-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.nav-btn {
	background: #f0eff6;
	color: #17171d;
}

.primary-btn {
	width: 100%;
	color: #fff;
	font-family: var(--title-font);
	background: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);
	box-shadow: 0 14px 24px rgba(36, 93, 255, 0.2);
	margin-top: 18px;
}

.screen#screen-2 .footer-nav,
.screen#screen-3 .footer-nav,
.screen#screen-4 .footer-nav {
	grid-template-columns: 1fr 1.7fr;
	gap: 16px;
	margin-top: 10px;
	align-items: center;
}

.screen#screen-2 .footer-nav .nav-btn,
.screen#screen-3 .footer-nav .nav-btn,
.screen#screen-4 .footer-nav .nav-btn,
.screen#screen-2 .footer-nav .primary-btn,
.screen#screen-3 .footer-nav .primary-btn,
.screen#screen-4 .footer-nav .primary-btn {
	height: 80px;
	border-radius: 24px;
	font-size: 38px;
	line-height: 1;
	font-weight: 800;
	margin-top: 0;
	padding: 0 18px;
}

.screen#screen-2 .footer-nav .nav-btn,
.screen#screen-3 .footer-nav .nav-btn,
.screen#screen-4 .footer-nav .nav-btn {
	background: #e7e6ec;
	color: #15151b;
	box-shadow: none;
}

.screen#screen-2 .footer-nav .primary-btn,
.screen#screen-3 .footer-nav .primary-btn,
.screen#screen-4 .footer-nav .primary-btn {
	background: linear-gradient(90deg, #b54cff 0%, #2c5bed 100%);
	box-shadow: none;
}

.ghost-btn {
	background: transparent;
	border: 1px solid var(--line);
	color: #17171d;
}

.certificate {
	display: grid;
	place-items: center;
	text-align: center;
	gap: 18px;
}

.certificate__icon {
	width: 100%;
	max-width: 220px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.certificate__title {
	margin: 0;
	font-family: "Cooper Black", "Arial Black", Georgia, serif;
	font-size: 28px;
	line-height: 1.05;
}

.certificate__copy {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--muted);
}

.mini-steps {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
}

.mini-step {
	padding: 6px 10px;
	border-radius: 999px;
	background: #f5f5f8;
	font-size: 12px;
	font-weight: 700;
	color: #3b3b45;
}

.screen--certificate .phone__body,
.screen--finish .phone__body {
	padding-top: 18px;
}

.screen--dense .phone__body {
	padding-bottom: 18px;
}

.hero-copy,
.intro-mark-title,
.detail-title,
.detail-key-title,
.phase-title,
.other-title,
.green-title,
.yellow-title,
.yellow-accordion__toggle,
.yellow-accordion__panel h3,
.info-card__title,
.summary-panel__title,
.certificate__title {
	font-family: var(--title-font);
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.07px;
}

.phone__topbar .phone__title {
	color: #000;
	text-align: center;
	font-family: "Huninn", "Inter", Arial, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.07px;
}

@media (min-width: 900px) {
	.prototype {
		padding-top: 28px;
		gap: 34px;
	}

	.screen {
		padding-inline: 24px;
	}

	.phone {
		border-radius: 28px;
	}
}

@media (max-width: 420px) {
	.prototype {
		padding-top: 12px;
		gap: 22px;
	}

	.screen {
		padding-inline: 10px;
	}

	.phone {
		border-radius: 22px;
	}

	.phone__body {
		padding-inline: 14px;
	}

	.hero-copy {
		font-size: 24px;
	}

	.hero-copy.is-wide {
		font-size: 26px;
	}

	.option-card__label {
		font-size: 22px;
	}
}