/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.47;
	color: #1d1d1f;
	background-color: #000000;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	line-height: 1.07;
	letter-spacing: -0.022em;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.nav {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: navSlideDown 0.6s ease-out;
	width: fit-content;
}

@keyframes navSlideDown {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px;
	gap: 48px;
	white-space: nowrap;
	min-width: 700px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 35px;
	height: 35px;
	/* border-radius: 6px; */
}

.nav-logo .logo-text {
	font-size: 17px;
	font-weight: 600;
	color: #f5f5f7;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 32px;
}

.nav-link {
	color: #f5f5f7;
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	transition: color 0.3s ease;
	padding: 8px 12px;
	border-radius: 20px;
}

.nav-link:hover {
	color: #FF9500;
	background: rgba(255, 149, 0, 0.1);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	min-width: 60px;
	min-height: 32px;
}

.btn-primary {
	background: #FF9500;
	color: white;
	border-radius: 20px;
}

.btn-primary:hover {
	background: #E6850E;
	transform: scale(1.02);
}

.btn-secondary {
	background: transparent;
	color: #f5f5f7;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #f5f5f7;
	border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
	padding: 12px 24px;
	font-size: 17px;
	min-width: 23px;
	min-height: 23px;
}

/* Hero Section */
.hero {
	padding: 88px 0 0;
	background: #000000;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	z-index: 2;
	position: relative;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
}

.hero-title {
	margin-bottom: 6px;
}

.hero-title-main {
	display: block;
	font-size: 80px;
	font-weight: 600;
	color: #f5f5f7;
	line-height: 1.05;
	letter-spacing: -0.022em;
}

.hero-subtitle {
	font-size: 28px;
	font-weight: 400;
	color: #f5f5f7;
	margin-bottom: 19px;
	line-height: 1.14;
	letter-spacing: 0.007em;
}

.hero-description {
	font-size: 21px;
	color: #a1a1a6;
	margin-bottom: 40px;
	line-height: 1.38;
	letter-spacing: 0.011em;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-badges {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
	opacity: 0;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: rgba(255, 149, 0, 0.15);
	color: #FF9500;
	border: 1px solid rgba(255, 149, 0, 0.3);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.badge:hover {
	background: rgba(255, 149, 0, 0.25);
	border-color: rgba(255, 149, 0, 0.5);
	transform: translateY(-2px);
}

/* Screenshot Showcase */
.hero-visual {
	position: relative;
	width: 100%;
	min-height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.screenshot-showcase {
	position: relative;
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.screenshot-item {
	position: relative;
	transition: all 0.4s ease;
	animation: fadeInUp 0.8s ease-out;
}

.screenshot-item:nth-child(1) {
	animation-delay: 0.1s;
	transform: translateY(0);
}

.screenshot-item:nth-child(2) {
	animation-delay: 0.2s;
	transform: translateY(0);
}

.screenshot-item:nth-child(3) {
	animation-delay: 0.3s;
	transform: translateY(0);
}

.screenshot-item:hover {
	transform: translateY(-10px);
}

.screenshot-image {
	width: 300px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.screenshot-image:hover {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	transform: scale(1.02);
}

.hero-screenshot {
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: 600px;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-screenshot:hover {
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
	transform: translateY(-10px) scale(1.03);
}

/* Features Section */
.features {
	padding: 120px 0 0;
	background: #000000;
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 56px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 16px;
	line-height: 1.07;
	letter-spacing: -0.022em;
}

.section-subtitle {
	font-size: 28px;
	color: #a1a1a6;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.14;
	letter-spacing: 0.007em;
}

/* Feature Highlights */
.feature-highlight {
	padding: 120px 0;
	background: #000000;
}

.feature-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.feature-reverse .feature-content {
	grid-template-columns: 1fr 1fr;
}

.feature-reverse .feature-text {
	order: 2;
}

.feature-reverse .feature-visual {
	order: 1;
}

.feature-text {
	max-width: 500px;
}

.feature-title {
	font-size: 48px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 19px;
	line-height: 1.08;
	letter-spacing: -0.022em;
}

.feature-description {
	font-size: 21px;
	color: #a1a1a6;
	margin-bottom: 30px;
	line-height: 1.38;
	letter-spacing: 0.011em;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	font-size: 17px;
	color: #f5f5f7;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.feature-list li::before {
	content: "•";
	color: #FF9500;
	font-weight: bold;
	position: absolute;
	left: 0;
}

.feature-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.feature-screenshot {
	position: relative;
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out;
}

.feature-screenshot:hover {
	transform: translateY(-5px);
}

.feature-image {
	width: 400px;
	height: auto;
	max-height: 700px;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.feature-image:hover {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	transform: scale(1.02);
}

/* Image hover effects and animations */
.screenshot-image, .feature-image, .process-image {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-image:hover, .feature-image:hover, .process-image:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* How It Works Section */
.how-it-works {
	padding: 120px 0 0;
	background: #000000;
}

/* Process Section */
.process-section {
	padding: 120px 0;
	background: #000000;
}

.process-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.process-text {
	max-width: 500px;
}

.process-title {
	font-size: 48px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 19px;
	line-height: 1.08;
	letter-spacing: -0.022em;
}

.process-description {
	font-size: 21px;
	color: #a1a1a6;
	margin-bottom: 40px;
	line-height: 1.38;
	letter-spacing: 0.011em;
}

.process-features {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.process-feature {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.process-icon {
	font-size: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1c1c1e;
	border-radius: 20px;
	flex-shrink: 0;
}

.process-feature-text h4 {
	font-size: 19px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 8px;
	line-height: 1.21;
	letter-spacing: -0.022em;
}

.process-feature-text p {
	font-size: 17px;
	color: #a1a1a6;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

/* Process Screenshot */
.process-screenshot {
	position: relative;
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out;
}

.process-screenshot:hover {
	transform: translateY(-5px);
}

.process-image {
	width: 500px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.process-image:hover {
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	transform: scale(1.02);
}

/* CTA Section */
.cta {
	padding: 120px 0;
	background: #000000;
	text-align: center;
}

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

.cta-title {
	font-size: 56px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 16px;
	line-height: 1.07;
	letter-spacing: -0.022em;
}

.cta-description {
	font-size: 21px;
	color: #a1a1a6;
	margin-bottom: 40px;
	line-height: 1.38;
	letter-spacing: 0.011em;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
}

/* Footer */
.footer {
	background: #000000;
	color: #f5f5f7;
	padding: 80px 0 40px;
	border-top: 1px solid #1c1c1e;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.footer-title-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.footer-icon {
	width: 45px;
	height: 45px;
	border-radius: 8px;
}

.footer-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
	color: #f5f5f7;
}

.footer-subtitle {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #f5f5f7;
}

.footer-description {
	font-size: 17px;
	color: #a1a1a6;
	margin-bottom: 16px;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.footer-text {
	font-size: 17px;
	color: #a1a1a6;
	margin-bottom: 8px;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.footer-link {
	display: block;
	color: #a1a1a6;
	text-decoration: none;
	font-size: 17px;
	margin-bottom: 8px;
	transition: color 0.3s ease;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.footer-link:hover {
	color: #FF9500;
}

.appstore-badge-link {
	display: inline-block;
	text-decoration: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.appstore-badge-link:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

.appstore-badge {
	width: 150px;
	height: auto;
	display: block;
}

.footer-bottom {
	border-top: 1px solid #1c1c1e;
	padding-top: 40px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Privacy Policy Page */
.privacy-policy {
	padding: 120px 0 80px;
	background: #000000;
	min-height: 100vh;
}

.privacy-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy-title {
	font-size: 56px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 12px;
	line-height: 1.07;
	letter-spacing: -0.022em;
}

.privacy-date {
	font-size: 17px;
	color: #a1a1a6;
	margin-bottom: 60px;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

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

.privacy-section-title {
	font-size: 32px;
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 16px;
	line-height: 1.08;
	letter-spacing: -0.022em;
}

.privacy-text {
	font-size: 17px;
	color: #a1a1a6;
	margin-bottom: 16px;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.privacy-text strong {
	color: #f5f5f7;
	font-weight: 600;
}

.privacy-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 24px;
}

.privacy-list li {
	font-size: 17px;
	color: #a1a1a6;
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

.privacy-list li::before {
	content: "•";
	color: #FF9500;
	font-weight: bold;
	font-size: 20px;
	position: absolute;
	left: 0;
}

.privacy-link {
	color: #FF9500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: #E6850E;
	text-decoration: underline;
}

.privacy-contact {
	font-size: 17px;
	color: #f5f5f7;
	margin: 16px 0;
	line-height: 1.47;
	letter-spacing: -0.022em;
}

@media (max-width: 768px) {
	.privacy-title {
		font-size: 40px;
	}

	.privacy-section-title {
		font-size: 28px;
	}

	.privacy-text,
	.privacy-list li,
	.privacy-contact {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.privacy-title {
		font-size: 32px;
	}

	.privacy-section-title {
		font-size: 24px;
	}
}

.footer-copyright {
	font-size: 14px;
	color: #8e8e93;
	line-height: 1.43;
	letter-spacing: -0.022em;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-title-main {
		font-size: 64px;
	}

	.hero-subtitle {
		font-size: 24px;
	}

	.screenshot-showcase {
		gap: 20px;
		flex-wrap: wrap;
	}

	.screenshot-image {
		width: 250px;
	}

	.hero-screenshot {
		max-width: 90%;
		max-height: 500px;
	}

	.feature-content {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.feature-reverse .feature-text {
		order: 1;
	}

	.feature-reverse .feature-visual {
		order: 2;
	}

	.process-content {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.feature-image {
		width: 350px;
		max-height: 450px;
	}

	.process-image {
		width: 400px;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.hero {
		padding: 40px 0 0;
	}

	.hero-title-main {
		font-size: 48px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.hero-description {
		font-size: 19px;
	}

	.hero-badges {
		gap: 10px;
	}

	.feature-content {
		grid-template-columns: 1fr !important;
		gap: 40px;
		text-align: center;
	}

	.feature-reverse .feature-text {
		order: 1 !important;
	}

	.feature-reverse .feature-visual {
		order: 2 !important;
	}

	.feature-text {
		max-width: 100%;
	}

	.feature-image,
	.process-image,
	.screenshot-image {
		width: 100%;
		max-width: 900px;
		height: auto;
		margin: 0 auto;
		padding: 0 10px;
		box-sizing: border-box;
	}

	.hero-screenshot {
		width: 100%;
		max-width: 700px;
		height: auto;
		margin: 0 auto;
		padding: 0 10px;
		box-sizing: border-box;
	}

	.section-header img {
		width: 100%;
		max-width: 90%;
		height: auto;
		margin-top: 20px;
	}

	.screenshot-showcase {
		flex-direction: column;
		gap: 40px;
		height: auto;
	}

	.section-title {
		font-size: 40px;
	}

	.section-subtitle {
		font-size: 24px;
	}

	.feature-title {
		font-size: 36px;
	}

	.feature-description {
		font-size: 19px;
	}

	.process-title {
		font-size: 36px;
	}

	.process-description {
		font-size: 19px;
	}

	.cta-title {
		font-size: 40px;
	}

	.cta-description {
		font-size: 19px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero-title-main {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-description {
		font-size: 17px;
	}

	.btn-large {
		padding: 12px 24px;
		font-size: 17px;
	}

	.section-title {
		font-size: 32px;
	}

	.section-subtitle {
		font-size: 20px;
	}

	.feature-title {
		font-size: 28px;
	}

	.feature-description {
		font-size: 17px;
	}

	.process-title {
		font-size: 28px;
	}

	.process-description {
		font-size: 17px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-description {
		font-size: 17px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

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

.hero-content {
	animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-highlight {
	animation: fadeInUp 0.6s ease-out;
}

.process-section {
	animation: fadeInUp 0.6s ease-out;
}

/* Subtle floating animation for screenshots */
.screenshot-item:nth-child(2) {
	animation: float 6s ease-in-out infinite;
	animation-delay: 1s;
}

.screenshot-item:nth-child(3) {
	animation: float 6s ease-in-out infinite;
	animation-delay: 2s;
}

/* Staggered animation for feature sections */
.feature-highlight:nth-child(odd) .feature-text {
	animation: slideInLeft 0.8s ease-out;
}

.feature-highlight:nth-child(even) .feature-text {
	animation: slideInRight 0.8s ease-out;
}

.feature-highlight:nth-child(odd) .feature-visual {
	animation: slideInRight 0.8s ease-out;
}

.feature-highlight:nth-child(even) .feature-visual {
	animation: slideInLeft 0.8s ease-out;
}

/* Smooth scrolling for anchor links */
html {
	scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #1c1c1e;
}

::-webkit-scrollbar-thumb {
	background: #3a3a3c;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #4a4a4c;
}

