@font-face {
	font-family: 'Nippo';
	src: url('fonts/Nippo-Variable.woff2') format('woff2'),
	     url('fonts/Nippo-Variable.woff') format('woff');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

a:active,
a:hover {
	outline: 0;
}

html {
	width: 100%;
	height: 100%;
	min-height: 100%;
	font-family: 'Nippo';
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	width: 100%;
	min-width: 300px;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	color: #000;
	background: #F7931A;
	font-family: 'Nippo';
	font-size: 100%;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Lock body to viewport height on desktop — no scroll */
@media only screen and (min-width: 1200px) {
	body {
		height: 100vh;
		overflow: hidden;
	}
}

/* Full-width background pattern for desktop */
@media only screen and (min-width: 1200px) {
	body::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: 
			radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
			radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
		pointer-events: none;
		z-index: 0;
	}
}

a:link,
a:visited {
	text-decoration: none;
	color: #000;
}

img {
	width: auto;
	max-width: 100%;
	height: auto;
}

p {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.6;
}

.responsive {
	width: 100%;
}

.sep {
	display: block;
	width: 100%;
	height: 2px;
	margin: 15px 0;
	background: rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
	.sep {
		margin-top: 0;
	}
}

.primary-btn {
	padding: 15px;
	text-transform: uppercase;
	color: #000;
	border: 2px solid #000;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.2s ease;
}

@media only screen and (min-width: 1200px) {
	.primary-btn {
		padding: 15px 22px;
		font-size: 16px;
	}
}

@media only screen and (min-width: 1600px) {
	.primary-btn {
		padding: 18px 26px;
		font-size: 17px;
	}
}

.primary-btn:hover {
	color: #F7931A;
	background: #000;
	box-shadow: 0 6px 24px 2px rgba(0, 0, 0, 0.25);
	transform: translateY(-2px);
}

.primary-btn:active {
	transform: translateY(1px);
	box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
}

/* =============================================
   Container
   ============================================= */

.container {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 15px;
}

@media only screen and (min-width: 480px) {
	.container {
		padding: 25px;
	}
}

@media only screen and (min-width: 768px) {
	.container {
		padding: 35px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1400px;
		padding: 30px 60px;
	}
}

@media only screen and (min-width: 1600px) {
	.container {
		max-width: 1600px;
		padding: 40px 80px;
	}
}

/* =============================================
   Header — Flexbox layout (replaces floats)
   ============================================= */

header.container {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

@media only screen and (min-width: 480px) {
	header.container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}
}

@media only screen and (min-width: 768px) {
	header.container {
		gap: 30px;
	}
}

@media only screen and (min-width: 1200px) {
	header.container {
		gap: 60px;
		align-items: center;
	}
}

@media only screen and (min-width: 1600px) {
	header.container {
		gap: 80px;
	}
}

/* =============================================
   Intro Container
   ============================================= */

.intro-container {
	position: relative;
	z-index: 10;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 40px;
	text-align: center;
}

@media only screen and (min-width: 1200px) {
	.intro-container {
		margin-top: 0;
		margin-bottom: 0;
	}
}

@media only screen and (min-width: 480px) {
	.intro-container {
		width: 55%;
		flex-shrink: 0;
		margin-bottom: 0;
		text-align: left;
	}
}

@media only screen and (min-width: 768px) {
	.intro-container {
		width: 50%;
		text-align: left;
	}
}

@media only screen and (min-width: 1200px) {
	.intro-container {
		width: 45%;
		max-width: 600px;
	}
}

@media only screen and (min-width: 1600px) {
	.intro-container {
		width: 42%;
		max-width: 650px;
	}
}

.app-store-btn::before {
	padding-right: 8px;
	content: '';
	font-size: 16px;
}

.app-icon {
	width: 90px;
	margin: 0 auto;
	filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
	-webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}

.app-icon img {
	border-radius: 20%;
	width: 90px;
	height: 90px;
	object-fit: contain;
}

.app-icon p {
	font-size: 35px;
	font-weight: 200;
	white-space: nowrap;
}

@media only screen and (min-width: 480px) {
	.app-icon {
		margin: 0;
	}
}

@media only screen and (min-width: 768px) {
	.app-icon {
		margin: 0;
	}

	.app-icon p {
		margin-left: 2px;
	}
}

@media only screen and (min-width: 1200px) {
	.app-icon {
		width: 100px;
		margin-bottom: 15px;
	}

	.app-icon img {
		width: 100px;
		height: 100px;
	}

	.app-icon p {
		font-size: 38px;
		margin-left: 3px;
	}
}

@media only screen and (min-width: 1600px) {
	.app-icon {
		width: 110px;
		margin-bottom: 20px;
	}

	.app-icon img {
		width: 110px;
		height: 110px;
	}

	.app-icon p {
		font-size: 42px;
	}
}

.intro {
	max-width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
}

.intro p {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.85;
}

@media only screen and (min-width: 480px) {
	.intro {
		margin-left: 0;
		margin-right: 0;
	}

	.intro p {
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) {
	.intro {
		margin-top: 0;
		margin-bottom: 25px;
	}

	.intro p {
		font-size: 17px;
		line-height: 1.7;
	}
}

@media only screen and (min-width: 1200px) {
	.intro {
		margin-bottom: 25px;
	}
}

@media only screen and (min-width: 1600px) {
	.intro {
		margin-bottom: 30px;
	}
}

.intro h1 {
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}

.intro h2 {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 200;
	line-height: 1.2;
}

@media only screen and (min-width: 480px) {
	.intro h1 {
		font-size: 28px;
	}

	.intro h2 {
		font-size: 24px;
		white-space: nowrap;
	}
}

@media only screen and (min-width: 768px) {
	.intro h1 {
		font-size: 34px;
	}

	.intro h2 {
		font-size: 30px;
	}
}

@media only screen and (min-width: 1200px) {
	.intro h1 {
		font-size: 40px;
		line-height: 1.2;
		margin-bottom: 15px;
	}

	.intro h2 {
		font-size: 36px;
	}

	.intro p {
		font-size: 18px;
		line-height: 1.7;
	}
}

@media only screen and (min-width: 1600px) {
	.intro h1 {
		font-size: 46px;
		margin-bottom: 20px;
	}

	.intro h2 {
		font-size: 40px;
	}

	.intro p {
		font-size: 19px;
		line-height: 1.75;
	}
}

/* =============================================
   iPhone Mockup
   ============================================= */

.iphone {
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
	padding-bottom: 30px;
	border-radius: 36px;
}

@media only screen and (min-width: 1200px) {
	.iphone {
		padding-bottom: 0;
	}
}

@media only screen and (min-width: 480px) {
	.iphone {
		width: 45%;
		max-width: 280px;
		margin: 0;
		padding-bottom: 0;
		flex-shrink: 0;
	}
}

@media only screen and (min-width: 768px) {
	.iphone {
		width: 42%;
		max-width: 300px;
		text-align: right;
	}
}

@media only screen and (min-width: 1200px) {
	.iphone {
		width: 45%;
		max-width: 400px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
}

@media only screen and (min-width: 1600px) {
	.iphone {
		width: 48%;
		max-width: 450px;
	}
}

.iphone-mockup {
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
}

@media only screen and (min-width: 480px) {
	.iphone-mockup {
		margin: 0;
	}
}

@media only screen and (min-width: 1200px) {
	.iphone-mockup {
		max-width: 400px;
		max-height: calc(100vh - 180px);
		width: auto;
	}
}

@media only screen and (min-width: 1600px) {
	.iphone-mockup {
		max-width: 450px;
		max-height: calc(100vh - 200px);
	}
}

/* =============================================
   Footer — Flexbox layout (replaces floats)
   ============================================= */

.footer {
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

@media only screen and (min-width: 1200px) {
	.footer {
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 1600px) {
	.footer {
		margin-bottom: 15px;
	}
}

.footer p {
	opacity: 0.7;
}

.credit {
	text-align: center;
	width: 100%;
}

.credit a {
	opacity: 1;
}

.credit a:hover {
	text-decoration: underline;
}

.contact {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	margin-top: 10px;
}

.contact a {
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	margin: 0;
	white-space: nowrap;
	min-height: 44px;
}

.contact a,
.contact a:visited {
	transition: opacity 0.2s ease, color 0.2s ease;
	text-decoration: none;
	opacity: 0.7;
	color: #000;
	cursor: pointer;
}

.contact a .link-content {
	display: inline-flex;
	align-items: center;
	background-image: linear-gradient(#000, #000);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
	padding-bottom: 1px;
}

.contact a:hover,
.contact a:focus,
.contact a:visited:hover,
.contact a:visited:focus {
	opacity: 1;
}

.contact a:hover .link-content,
.contact a:focus .link-content,
.contact a:visited:hover .link-content,
.contact a:visited:focus .link-content {
	background-size: 100% 1px;
}

.contact a:active {
	opacity: 0.9;
}

.contact a:active .link-content {
	background-size: 100% 1px;
}

.tiktok-icon {
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	width: 16px;
	height: 16px;
	position: relative;
	top: -1px;
}

/* Footer — Tablet: side-by-side */
@media only screen and (min-width: 480px) {
	footer.container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	footer.container .sep {
		width: 100%;
		flex-basis: 100%;
	}

	.credit {
		text-align: left;
		width: auto;
		flex: 1;
	}

	.contact {
		justify-content: flex-end;
		width: auto;
		flex: 1;
		margin-top: 0;
	}

	.contact a {
		padding: 0;
	}
}

/* =============================================
   About Section
   ============================================= */

.about {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px 0 20px;
	text-align: center;
}

.about h1 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 15px;
}

.about p {
	opacity: 0.85;
	line-height: 1.7;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 480px) {
	.about h1 {
		font-size: 24px;
	}
}

@media only screen and (min-width: 768px) {
	.about {
		padding: 40px 0 25px;
	}

	.about h1 {
		font-size: 26px;
	}
}

/* =============================================
   FAQ Section
   ============================================= */

.faq,
.faq-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0 30px;
}

.faq h2 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 25px;
	text-align: center;
}

.faq-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-item h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.3;
}

.faq-item p {
	opacity: 0.85;
	line-height: 1.7;
	font-size: 15px;
}

.faq-item a {
	text-decoration: underline;
	opacity: 0.9;
}

.faq-item a:hover {
	opacity: 1;
}

@media only screen and (min-width: 480px) {
	.faq h2 {
		font-size: 22px;
	}

	.faq-item h3 {
		font-size: 17px;
	}

	.faq-item p {
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) {
	.faq {
		padding: 25px 0 40px;
	}

	.faq h2 {
		font-size: 24px;
	}

	.faq-item h3 {
		font-size: 18px;
	}

	.faq-item p {
		font-size: 17px;
	}
}

/* =============================================
   Support Page Styles
   ============================================= */

.support-page {
	padding-top: 30px;
	padding-bottom: 30px;
}

.support-header {
	margin-bottom: 30px;
}

.support-header h1 {
	margin-bottom: 15px;
	font-size: 28px;
	font-weight: 300;
}

.support-header p {
	opacity: 0.7;
	max-width: 500px;
}

.back-link {
	display: inline-block;
	margin-bottom: 30px;
	opacity: 0.7;
	font-size: 14px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
	opacity: 1;
	transform: translateX(-3px);
}

.support-form {
	max-width: 500px;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 500;
}

.required {
	color: #ff6b6b;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 5px;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 16px;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	width: 100%;
}

.radio-label:hover {
	opacity: 1;
}

.radio-label input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: #fff;
	cursor: pointer;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 16px;
	font-family: inherit;
	color: #000;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.4);
	box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	display: inline-block;
	width: auto;
	cursor: pointer;
	font-family: inherit;
}

@media only screen and (min-width: 480px) {
	.support-page {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.support-header {
		margin-bottom: 35px;
	}

	.support-header h1 {
		font-size: 32px;
	}
}

@media only screen and (min-width: 768px) {
	.support-page {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.support-header {
		margin-bottom: 40px;
	}

	.support-header h1 {
		font-size: 36px;
	}
}

/* =============================================
   Privacy Policy Styles
   ============================================= */

.privacy-content {
	max-width: 600px;
}

.privacy-section {
	margin-bottom: 25px;
}

.privacy-section h2 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 15px;
}

.privacy-section p {
	opacity: 0.85;
	line-height: 1.7;
}

.privacy-section ul {
	margin: 15px 0;
	padding-left: 25px;
	opacity: 0.85;
}

.privacy-section li {
	margin-bottom: 10px;
	line-height: 1.6;
	font-size: 16px;
}

.privacy-section a {
	text-decoration: underline;
	opacity: 0.9;
}

.privacy-section a:hover {
	opacity: 1;
}

@media only screen and (min-width: 480px) {
	.privacy-section {
		margin-bottom: 30px;
	}

	.privacy-section h2 {
		font-size: 21px;
	}

	.privacy-section li {
		font-size: 17px;
	}
}

@media only screen and (min-width: 768px) {
	.privacy-section {
		margin-bottom: 35px;
	}

	.privacy-section h2 {
		font-size: 22px;
	}

	.privacy-section li {
		font-size: 18px;
	}
}

/* =============================================
   Responsive Typography for Support/Privacy
   ============================================= */

@media only screen and (max-width: 479px) {
	p,
	.privacy-section li {
		font-size: 16px;
	}
}

/* =============================================
   Animations — Keyframes
   ============================================= */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* =============================================
   Animation Utility Classes
   ============================================= */

.anim-fade-in {
	animation: fadeIn 0.5s ease both;
	animation-delay: var(--delay, 0s);
}

.anim-fade-in-up {
	animation: fadeInUp 0.5s ease both;
	animation-delay: var(--delay, 0s);
}

.anim-fade-in-right {
	animation: fadeInRight 0.6s ease both;
	animation-delay: var(--delay, 0s);
}

.anim-scale-in {
	animation: scaleIn 0.5s ease both;
	animation-delay: var(--delay, 0s);
}

/* =============================================
   iPhone Floating Animation
   ============================================= */

.iphone-mockup {
	animation: float 4s ease-in-out infinite;
	animation-delay: 1s;
}

.iphone-mockup:hover {
	animation-play-state: paused;
}

/* =============================================
   FAQ Item Staggered Animations
   ============================================= */

.faq-content .faq-item {
	animation: fadeInUp 0.5s ease both;
}

.faq-content .faq-item:nth-child(1) { animation-delay: 0.15s; }
.faq-content .faq-item:nth-child(2) { animation-delay: 0.25s; }
.faq-content .faq-item:nth-child(3) { animation-delay: 0.35s; }
.faq-content .faq-item:nth-child(4) { animation-delay: 0.45s; }
.faq-content .faq-item:nth-child(5) { animation-delay: 0.55s; }
.faq-content .faq-item:nth-child(6) { animation-delay: 0.65s; }

/* =============================================
   Support Form Staggered Animations
   ============================================= */

.support-form .form-group {
	animation: fadeInUp 0.5s ease both;
}

.support-form .form-group:nth-child(1) { animation-delay: 0.15s; }
.support-form .form-group:nth-child(2) { animation-delay: 0.25s; }
.support-form .form-group:nth-child(3) { animation-delay: 0.35s; }

.support-form .submit-btn {
	animation: fadeInUp 0.5s ease both;
	animation-delay: 0.45s;
}

/* =============================================
   Privacy Section Staggered Animations
   ============================================= */

.privacy-content .privacy-section {
	animation: fadeInUp 0.5s ease both;
}

.privacy-content .privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-content .privacy-section:nth-child(2) { animation-delay: 0.15s; }
.privacy-content .privacy-section:nth-child(3) { animation-delay: 0.2s; }
.privacy-content .privacy-section:nth-child(4) { animation-delay: 0.25s; }
.privacy-content .privacy-section:nth-child(5) { animation-delay: 0.3s; }
.privacy-content .privacy-section:nth-child(6) { animation-delay: 0.35s; }
.privacy-content .privacy-section:nth-child(7) { animation-delay: 0.4s; }
.privacy-content .privacy-section:nth-child(8) { animation-delay: 0.45s; }
.privacy-content .privacy-section:nth-child(9) { animation-delay: 0.5s; }
.privacy-content .privacy-section:nth-child(10) { animation-delay: 0.55s; }
.privacy-content .privacy-section:nth-child(11) { animation-delay: 0.6s; }

/* =============================================
   Subpage Header Animations
   ============================================= */

.support-header .back-link {
	animation: fadeIn 0.4s ease both;
	animation-delay: 0s;
}

.support-header h1 {
	animation: fadeInUp 0.5s ease both;
	animation-delay: 0.05s;
}

.support-header p {
	animation: fadeInUp 0.5s ease both;
	animation-delay: 0.1s;
}

/* =============================================
   Footer Animation
   ============================================= */

.footer {
	animation: fadeIn 0.5s ease both;
	animation-delay: 0.6s;
}

/* =============================================
   Active Page Indicator
   ============================================= */

.contact a[aria-current="page"],
.contact a[aria-current="page"]:visited {
	opacity: 1;
	font-weight: 500;
}

.contact a[aria-current="page"] .link-content {
	background-size: 100% 1px;
}

/* =============================================
   Focus-Visible States (Keyboard Accessibility)
   ============================================= */

.primary-btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 3px;
}

.contact a:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 3px;
	border-radius: 2px;
}

.back-link:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 3px;
	border-radius: 2px;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
	outline: none;
	border-color: rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.3);
}

.radio-label input[type="radio"]:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 2px;
}

.faq-item a:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 2px;
	border-radius: 2px;
}

.privacy-section a:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 2px;
	border-radius: 2px;
}

/* =============================================
   Form Validation Styles
   ============================================= */

.form-input:user-valid,
.form-textarea:user-valid {
	border-color: rgba(0, 0, 0, 0.35);
}

.form-input:user-invalid,
.form-textarea:user-invalid {
	border-color: #d44;
	box-shadow: 0 0 0 2px rgba(221, 68, 68, 0.15);
}

/* =============================================
   Reduced Motion — Respect user preference
   ============================================= */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		animation-delay: 0s !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.iphone-mockup {
		animation: none;
	}
}
