:root {
	--primary: #000000;
	--secondary: #FBFBFB;
	--accent: #007AFF;
	--accent-hover: #0056CC;
	--gray: #8E8E93;
	--highlight: #00D4AA;
	--background-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--background-gradient);
	color: var(--secondary);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}

/* Header Section */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;
}

.header-content {
	max-width: 900px; /* Same as hero-content */
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-section {
	display: flex;
	align-items: center;
}

.header-logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.header-logo:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.presskit-section {
	display: flex;
	align-items: center;
	position: relative;
}

.presskit-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background: linear-gradient(135deg, #6B7280, #374151);
	border: none;
	border-radius: 12px;
	text-decoration: none;
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
	position: relative;
	overflow: hidden;
}

.presskit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.presskit-btn:hover::before {
	left: 100%;
}

.presskit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
	filter: brightness(1.15);
}

.presskit-btn:active {
	transform: translateY(-1px);
}

.presskit-icon {
	font-size: 1.1rem;
}

.presskit-text {
	font-weight: 600;
	letter-spacing: 0.5px;
}

.notification-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #FF3B30;
	color: white;
	font-family: 'Helvetica Neue', Helvetica, -apple-system, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
	border: 2px solid rgba(0, 0, 0, 0.9);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 4px 12px rgba(255, 59, 48, 0.6);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
	}
}


/* Hero Section */
.hero {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	padding-top: 6rem; /* Compensation for fixed header */
	text-align: center;
}

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

.app-icon-large {
	margin-bottom: 2rem;
}

.app-icon-large img {
	width: 120px;
	height: 120px;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.app-icon-large img:hover {
	transform: translateY(-5px);
}

.hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff, #e0e0e0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.highlight {
	background: linear-gradient(135deg, var(--highlight), #00B894);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.hero-subtitle {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	color: var(--gray);
	margin-bottom: 2.5rem;
	font-weight: 400;
}

/* Screenshots Section */
.screenshots-section {
	margin-bottom: 3rem;
}

.screenshots-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	padding: 0 2rem;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.screenshots-gallery::-webkit-scrollbar {
	display: none;
}

.screenshot {
	height: 280px;
	width: auto;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	flex-shrink: 0;
	will-change: transform;
}

.screenshot:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.cta-section {
	margin-bottom: 2rem;
}

.app-store-btn {
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-bottom: 1.5rem;
}

.app-store-btn:hover {
	transform: translateY(-2px);
}

.app-store-badge {
	height: 60px;
	width: auto;
	transition: all 0.2s ease;
}

.app-store-btn:hover .app-store-badge {
	filter: brightness(1.1);
}

.privacy-note {
	color: var(--gray);
	font-size: 0.9rem;
	margin-top: 1rem;
}

/* Content Section */
.content-section {
	margin: 4rem 0;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.features {
	text-align: center;
}

.features h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--secondary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.feature-text {
	color: var(--secondary);
	font-weight: 500;
	font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
	margin-top: 3rem;
}

.contact-text {
	color: var(--gray);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-decoration: none;
	color: var(--secondary);
	transition: all 0.2s ease;
	backdrop-filter: blur(10px);
}

.contact-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.contact-icon {
	font-size: 1.2rem;
}

.contact-email {
	font-weight: 500;
	font-size: 1rem;
}

/* Footer */
.footer {
	padding: 2rem;
	text-align: center;
}

.footer-links {
	margin-bottom: 1rem;
}

.footer-link {
	color: var(--gray);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: var(--secondary);
}

.footer-separator {
	color: var(--gray);
	margin: 0 0.75rem;
}

.made-by {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header-content {
		padding: 0 1rem;
	}
	
	.header-logo {
		width: 35px;
		height: 35px;
	}
	
	.presskit-btn {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}
	
	.presskit-text {
		display: none; /* Hide text on mobile, keep only icon */
	}
	
	.presskit-icon {
		font-size: 1.2rem;
	}
	
	.notification-badge {
		width: 18px;
		height: 18px;
		font-size: 0.7rem;
		top: -6px;
		right: -6px;
	}
	
	.hero {
		padding: 1rem;
		padding-top: 5rem; /* Adjust for smaller header */
	}
	
	.app-icon-large img {
		width: 80px;
		height: 80px;
		border-radius: 16px;
	}
	
	.hero-title {
		font-size: 2.2rem;
		margin-bottom: 0.75rem;
	}
	
	.hero-subtitle {
		font-size: 1.25rem;
		margin-bottom: 2rem;
	}
	
	.screenshot {
		height: 220px;
	}
	
	/* Hide the 4th screenshot on tablet */
	.screenshot:nth-child(4) {
		display: none;
	}
	
	.content-section {
		padding: 0 1rem;
		margin: 2rem 0;
	}
	
	.features-grid {
		gap: 0.75rem;
	}
	
	.feature {
		padding: 0.875rem;
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
	
	.feature-text {
		font-size: 0.85rem;
	}
	
	.app-store-badge {
		height: 50px;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 0 1rem;
	}
	
	.header-logo {
		width: 32px;
		height: 32px;
	}
	
	.presskit-btn {
		padding: 0.5rem 0.8rem;
		border-radius: 10px;
	}
	
	.presskit-icon {
		font-size: 1.1rem;
	}
	
	.notification-badge {
		width: 16px;
		height: 16px;
		font-size: 0.65rem;
		top: -5px;
		right: -5px;
	}
	
	.hero {
		padding: 1rem;
		padding-top: 4.5rem; /* Adjust for smaller header */
	}
	
	.app-icon-large {
		margin-bottom: 1.5rem;
	}
	
	.app-icon-large img {
		width: 70px;
		height: 70px;
	}
	
	.hero-title {
		font-size: 1.8rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.screenshot {
		height: 180px;
	}
	
	/* Hide the 3rd screenshot on small mobile */
	.screenshot:nth-child(3) {
		display: none;
	}
	
	.content-section {
		padding: 0 1rem;
	}
	
	.feature {
		padding: 0.75rem;
	}
	
	.feature-text {
		font-size: 0.8rem;
	}
	
	.app-store-badge {
		height: 45px;
	}
}

/* iPhone SE and very small screens */
@media (max-width: 375px) {
	.header-content {
		padding: 0 1rem;
	}
	
	.header-logo {
		width: 30px;
		height: 30px;
	}
	
	.presskit-btn {
		padding: 0.4rem 0.7rem;
		border-radius: 8px;
	}
	
	.presskit-icon {
		font-size: 1rem;
	}
	
	.notification-badge {
		width: 14px;
		height: 14px;
		font-size: 0.6rem;
		top: -4px;
		right: -4px;
	}
	
	.hero {
		padding: 1rem 2rem;
		padding-top: 4rem; /* Adjust for smaller header */
	}
	
	.hero-title {
		font-size: 1.4rem;
		line-height: 1.2;
		word-spacing: -1px;
	}
	
	.hero-subtitle {
		font-size: 0.9rem;
		line-height: 1.3;
	}
	
	/* Hide the 2nd screenshot on very small screens */
	.screenshot:nth-child(2) {
		display: none;
	}
	
	.content-section {
		padding: 0 2rem;
	}
	
	.features h2 {
		font-size: 1.3rem;
	}
	
	.feature-text {
		font-size: 0.7rem;
		line-height: 1.2;
	}
}


/* Smooth animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.header {
	opacity: 0;
	animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

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

.hero-content > * {
	opacity: 0;
	animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.app-icon-large {
	animation-delay: 0.2s;
}

.hero-title {
	animation-delay: 0.4s;
}

.hero-subtitle {
	animation-delay: 0.6s;
}

.screenshots-section {
	animation-delay: 0.8s;
}

.cta-section {
	animation-delay: 1.0s;
}

.content-section {
	animation-delay: 1.2s;
}

.contact-section {
	animation-delay: 1.4s;
}