/* Copied for static privacy page styling */
/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #fafafa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

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

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2563eb;
}

.nav {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #64748b;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: #2563eb;
}

/* Hero Section */
.hero {
	padding: 8rem 0 6rem;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #dbeafe;
	color: #1e40af;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.status-dot {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #0f172a;
}

.highlight {
	color: #2563eb;
	position: relative;
}

.highlight::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #2563eb, #3b82f6);
	border-radius: 2px;
}

.hero-description {
	font-size: 1.25rem;
	color: #64748b;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #2563eb;
	color: white;
	text-decoration: none;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.2s ease;
	width: fit-content;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.platform-badges {
	display: flex;
	gap: 1rem;
}

.platform-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #64748b;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Hero Visual */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-mockup {
	width: 280px;
	height: 560px;
	background: #1f2937;
	border-radius: 2rem;
	padding: 1rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	transform: rotate(5deg);
	transition: transform 0.3s ease;
}

.phone-mockup:hover {
	transform: rotate(0deg);
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: white;
	border-radius: 1.5rem;
	overflow: hidden;
}

.app-preview {
	padding: 2rem 1.5rem;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.preview-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.preview-date {
	font-size: 0.875rem;
	opacity: 0.9;
}

.preview-profile {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.preview-calories {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

.calories-circle {
	width: 120px;
	height: 120px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
}

.calories-text {
	text-align: center;
}

.calories-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
}

.calories-label {
	font-size: 0.75rem;
	opacity: 0.8;
}

.preview-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.preview-card {
	background: rgba(255, 255, 255, 0.15);
	padding: 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Features Section */
.features {
	padding: 6rem 0;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0f172a;
}

.section-description {
	font-size: 1.125rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: #2563eb;
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: #dbeafe;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-icon svg {
	width: 24px;
	height: 24px;
	color: #2563eb;
}

.feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0f172a;
}

.feature-description {
	color: #64748b;
	line-height: 1.6;
}

/* Benefits Section */
.benefits {
	padding: 6rem 0;
	background: #f8fafc;
}

.benefits-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.benefits-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #0f172a;
}

.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.benefit-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.benefit-icon {
	width: 24px;
	height: 24px;
	color: #10b981;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.benefit-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0f172a;
}

.benefit-content p {
	color: #64748b;
}

.benefits-visual {
	display: flex;
	justify-content: center;
}

.chart-mockup {
	background: white;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: 300px;
}

.chart-header {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #0f172a;
}

.chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	height: 120px;
}

.chart-bar {
	background: linear-gradient(to top, #2563eb, #3b82f6);
	border-radius: 0.25rem;
	flex: 1;
	min-height: 20px;
	animation: growUp 1s ease-out;
}

@keyframes growUp {
	from { height: 0; }
	to { height: inherit; }
}

/* Waitlist Section */
.waitlist {
	padding: 6rem 0;
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	color: white;
	text-align: center;
}

.waitlist-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.waitlist-description {
	font-size: 1.125rem;
	opacity: 0.9;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.waitlist-form {
	max-width: 500px;
	margin: 0 auto 3rem;
}

.form-group {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.email-input {
	flex: 1;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 0.75rem;
	font-size: 1rem;
	background: white;
	color: #1a1a1a;
}

.email-input:focus {
	outline: 2px solid #3b82f6;
	outline-offset: 2px;
}

.submit-button {
	background: #1e40af;
	color: white;
	border: none;
	padding: 1rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.submit-button:hover {
	background: #1e3a8a;
	transform: translateY(-2px);
}

.form-footer {
	opacity: 0.8;
	font-size: 0.875rem;
}

.success-message {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 2rem;
}

.success-icon {
	color: #10b981;
	margin-bottom: 1rem;
}

.success-icon svg {
	width: 48px;
	height: 48px;
}

.success-message h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.social-proof {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	opacity: 0.9;
}

.proof-item {
	text-align: center;
}

.proof-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
}

.proof-label {
	font-size: 0.875rem;
	opacity: 0.8;
}

.proof-divider {
	opacity: 0.5;
}

/* Footer */
.footer {
	background: #0f172a;
	color: white;
	padding: 3rem 0 2rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.footer-brand p {
	opacity: 0.7;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-link {
	color: white;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.footer-link:hover {
	opacity: 1;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.5;
}

/* Privacy Page Specific Styles */
.privacy-header {
	position: relative;
	background: white;
	backdrop-filter: none;
}

.privacy-header-banner {
	background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
	color: white;
	padding: 3rem 2rem;
	text-align: center;
	margin-top: 17px; /* Adjust based on header height */
}

.privacy-header-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.privacy-header-desc {
	font-size: 1.125rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.nav-link.active {
	color: #2563eb;
	font-weight: 600;
}

.privacy-main {
	padding: 4rem 0;
	background: white;
}

.privacy-main h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: #0f172a;
}

.privacy-main p, .privacy-main li {
	color: #334155;
	line-height: 1.7;
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

.privacy-main ul {
	list-style-position: outside;
	padding-left: 1.5rem;
}

.privacy-main a {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
}

.privacy-main a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}
    
	.nav {
		display: none;
	}
    
	.hero {
		padding: 6rem 0 4rem;
	}
    
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
    
	.hero-title {
		font-size: 2.5rem;
	}
    
	.hero-description {
		font-size: 1.125rem;
	}
    
	.section-title {
		font-size: 2rem;
	}
    
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
    
	.benefits-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
    
	.benefits-visual {
		order: -1;
	}
    
	.form-group {
		flex-direction: column;
	}
    
	.social-proof {
		flex-direction: column;
		gap: 1rem;
	}
    
	.footer-content {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}
    
	.phone-mockup {
		width: 240px;
		height: 480px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
    
	.waitlist-title {
		font-size: 2rem;
	}
    
	.phone-mockup {
		width: 200px;
		height: 400px;
	}
}
