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

html {
	scroll-behavior: smooth;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #101010;	
}

/* Navigation Header */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
/*	backdrop-filter: saturate(180%) blur(20px);*/
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding: 20px 0;
	transition: all 0.3s ease;
	padding-left: 24px; 
	padding-right: 24px; 
	padding-top: 10px; 
	padding-bottom: 10px; 
	justify-content: flex-end; 
	align-items: center; 
	gap: 10px; 
	display: flex;
/*	width: 100%;*/
	background: #101010;	

}

.headerTitle {
	flex: 1 1 0; 
	color: white; 
	font-size: 24px; 
	font-family: Bodoni72; 
	font-weight: 400; 
	word-wrap: break-word;
/*	background: blue;*/
}

.headerLinksContainer {
	padding-top: 10px; 
	padding-bottom: 10px; 
	justify-content: flex-end; 
	align-items: center; 
	gap: 10px; 
	display: flex;
/*	background: red;*/
	font-family: Apple Garamond Light; 
	color: white;
}

.headerLinks {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.headerLinks a {
	margin: 10px; 
	justify-content: center; 
	align-items: center; 
	gap: 10px; 
	display: flex;
	font-size: 1rem; 
	font-weight: 400;
	color: white;
	text-decoration: none;
	transition: all 0.2s ease;
}

.headerLinks a::after {
	transition: width 0.3s ease;
}

.headerLinks a:hover {
	color: gray;
	transform: translateY(-2px);
}

.headerLinks a:hover::after {
/*	width: 100%;*/
}




.downloadButtonContainer {
/*	position: fixed;*/
/*	bottom: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	padding: 20px;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	z-index: 1001;*/
/*	pointer-events: none;*/
}

.downloadButtonText {
	padding: 12px;
	background: white;
	border-radius: 48px;
	color: #101010;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	pointer-events: auto;
	display: inline-block;
}

.downloadButtonText:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.downloadButtonText:active {
	transform: translateY(0);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.downloadButtonText {
	text-align: center; 
	color: black; 
	font-size: 12px; 
	font-family: Inter; 
	font-weight: 600; 
	word-wrap: break-word;
}

/* Hamburger Menu Button - Hidden by default, shown on mobile */
.hamburger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 28px;
	height: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1002;
	transition: all 0.3s ease;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translateY(10px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(16, 16, 16, 0.98);
	backdrop-filter: blur(20px);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1003;
	transition: all 0.3s ease;
	opacity: 0;
	transform: rotate(-90deg);
}

.mobile-nav-overlay.active .mobile-nav-close {
	opacity: 1;
	transform: rotate(0deg);
	transition-delay: 0.2s;
}

.mobile-nav-close:hover {
	transform: rotate(90deg);
}

.mobile-nav-close svg {
	display: block;
}

.mobile-nav-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 40px;
	padding: 20px;
}

.mobile-nav-link {
	color: white;
	font-family: 'Apple Garamond Light', serif;
	font-size: 2rem;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-link {
	opacity: 1;
	transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) {
	transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) {
	transition-delay: 0.2s;
}

.mobile-nav-link:hover {
	color: #999;
	transform: translateX(10px);
}

/* Mobile Download Button in Menu */
.mobile-nav-download {
	margin-top: 20px;
	padding: 14px 32px;
	background: white;
	border-radius: 48px;
	color: #101010;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-download {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.mobile-nav-download:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section with Typing Animation */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #101010;
	position: relative;
	overflow: hidden;
	margin-top: -40px;
}

/* Floating Bubbles */
.bubbles-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-bubble {
	position: absolute;
	padding: 12px 20px;
	background: white;
/*	background: rgba(255, 255, 255, 0.1);*/
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: black;
/*	color: rgba(255, 255, 255, 0.9);*/
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	white-space: nowrap;
	animation: float 20s infinite ease-in-out;
	opacity: 0;
	pointer-events: auto;
	cursor: default;
	transition: all 0.3s ease;
}

.floating-bubble:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}

@keyframes float {
	0% {
		opacity: 0;
		transform: translateY(100vh) translateX(0) rotate(0deg);
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(-100vh) translateX(var(--float-x)) rotate(var(--float-rotate));
	}
}

.hero-content {
	text-align: center;
	padding: 12px 20px;
	background: #202020;
	border-radius: 124px;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.typing-text {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: -0.5px;
	display: inline-block;
	position: relative;
	min-height: 1.5rem;
	line-height: 1.5;
	transition: opacity 0.3s ease;
}

/* Typing Cursor Animation */
.typing-text::after {
	content: '|';
	color: #ffffff;
	animation: blink 0.8s infinite;
	margin-left: 2px;
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

/* Input Container - Hidden by default */
.input-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0;
	padding: 12px 16px 12px 24px;
	border-radius: 124px;
	min-width: 100%;
	min-height: 100%;
	background: #202020;
}

/* Show input on hover */
.hero-content:hover .input-container,
.hero-content.active .input-container {
	opacity: 1;
	visibility: visible;
	margin: 1;
	border: solid white 1px;
}

.hero-content:hover .typing-text,
.hero-content.active .typing-text {
	opacity: 0;
}

/* Input Field Styles */
.hero-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	padding: 0;
	caret-color: #ffffff;
	min-width: 0;
	resize: none;
	overflow: hidden;
	line-height: 1.5;
	min-height: 1.5rem;
	max-height: 150px;
	overflow-y: auto;
	text-align: center;
}

.hero-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* Custom scrollbar for textarea */
.hero-input::-webkit-scrollbar {
	width: 4px;
}

.hero-input::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 2px;
}

.hero-input::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.hero-input::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.submit-button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: transform 0.2s ease, color 0.2s ease;
	margin-left: 8px;
	flex-shrink: 0;
}

.submit-button:hover {
	transform: translateX(3px);
	color: #ffffff;
}

.submit-button svg {
	display: block;
	width: 20px;
	height: 20px;
}



header h1 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1d1d1f;
	letter-spacing: -0.5px;
	margin-bottom: 12px;
}

.nav-links {
	text-align: center;
	margin-top: 12px;
}

.nav-links a {
	margin: 0 20px;
	color: #06c;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 400;
	transition: all 0.2s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: #06c;
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: #0051d5;
}

.nav-links a:hover::after {
	width: 100%;
}



.features {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
/*	max-width: 900px;*/
/*	margin: 0 auto;*/
	background: #101010;
	padding-bottom: 80px;
	padding-top: 80px;
}

.featureTitle {
align-self: stretch; 
text-align: center;
color: white; 
font-size: 50px; 
font-family: Instrument Serif; 
word-wrap: break-word;
letter-spacing: -4px;
line-height: 0.5;
    -webkit-transform:scale(1,1.3); /* Safari and Chrome */
/*margin-bottom: 40px;*/
}

.featureCaption {
align-self: stretch; 
text-align: center; 
color: white;
opacity: 0.5; 
font-size: 14px; 
font-family: Inter; 
font-weight: 400; 
word-wrap: break-word;
margin-top: 40px;
}

#features, img {
	width: 697px; 
	height: 509px;
	margin: 80px;
}


/* Main Content */
main {
	flex: 1;
/*	max-width: 980px;*/
	width: 100%;
	margin: 0 auto;
	padding: 80px 20px 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-section {
	width: 100%;
/*	background: #3B2F28;*/
	padding: 80px 60px;
	border-radius: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	animation: fadeInUp 0.8s ease both;
	backdrop-filter: saturate(180%) blur(20px);
}

.about-section h2 {
	font-size: 1rem;
	margin-bottom: 40px;
/*	text-align: center;*/
/*	font-weight: 700;*/
/*	letter-spacing: -1.5px;*/
	color: white;
}

.about-section p {
	font-size: 0.9rem;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: -0.3px;
	color: white;
	opacity: 0.7;

	justify-content: right;
	text-align: right;
	color: white;
	max-width: 900px;
	margin: 0px 0px 0px 800px;
}
}

.about-section h3 {
	font-size: 1.8rem;
	margin-top: 60px;
	margin-bottom: 24px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.about-section h3:first-of-type {
	margin-top: 40px;
}

.aboutTitle {
	color: white;
	margin-bottom: 32px;
}

.aboutText {
	justify-content: right;
	text-align: right;
	padding-bottom: 40px;

}


.highlight {
	font-style: italic;
	font-weight: 600;
	color: #fff;
	letter-spacing: 1px;
}

/* Footer */
footer {
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
	text-align: center;
	padding: 40px 20px;
/*	background: #f5f5f7;*/
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	gap: 10px;
}

footer p {
	margin: 0;
	color: #86868b;
	font-size: 0.875rem;
	font-weight: 400;
}

.privacy {
	margin: 0;
}

footer a {
	color: #86868b;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

footer a:hover {
	color: #86868b;
	text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1068px) {
	.about-section {
		padding: 60px 40px;
	}
	
	.about-section p {
		margin: 0px 0px 0px 400px;
	}
	
	/* Tablet adjustments */
	.featureTitle {
		font-size: 40px;
		letter-spacing: -3px;
	}
	
	#features, img {
		width: 90%;
		max-width: 500px;
		height: auto;
		margin: 60px 20px;
	}
}

@media (max-width: 768px) {
	/* Header adjustments for mobile */
	header {
		padding: 12px 16px;
		flex-wrap: wrap;
	}
	
	.headerTitle {
		font-size: 20px;
	}
	
	.headerLinksContainer {
		display: none; /* Hide desktop links on mobile */
	}
	
	.downloadButtonContainer {
		display: none; /* Hide desktop download button on mobile */
	}
	
	/* Show hamburger menu on mobile */
	.hamburger-menu {
		display: flex;
	}
	
	/* Show mobile nav overlay */
	.mobile-nav-overlay {
		display: block;
	}
	
	/* Hero section mobile adjustments */
	.floating-bubble {
		font-size: 0.75rem;
		padding: 10px 16px;
		max-width: 80%;
		white-space: normal;
		text-align: center;
	}

	.hero-content {
		padding: 16px 28px;
		max-width: 90%;
		margin-top: -50px;

	}

	.typing-text {
		font-size: 0.9rem;
		min-height: 1.3rem;
	}
	
	/* Features section mobile */
	.features {
		padding: 40px 20px;
	}
	
	.featureTitle {
		font-size: 32px;
		letter-spacing: -2px;
		line-height: 1.2;
		padding: 0 20px;
	}
	
	.featureCaption {
		font-size: 13px;
		margin-top: 20px;
		padding: 0 30px;
	}
	
	#features, img {
		width: 100%;
		max-width: 350px;
		height: auto;
		margin: 40px 20px;
	}

	/* Main content mobile */
	main {
		padding: 40px 16px 80px;
	}

	.about-section {
		padding: 40px 20px;
		border-radius: 18px;
	}

	.about-section h2 {
		font-size: 2rem;
		margin-bottom: 30px;
		letter-spacing: -1px;
	}

	.about-section p {
		font-size: 0.9rem;
		margin: 0 0 24px 0;
		line-height: 1.7;
		text-align: left;
		max-width: 100%;
	}
	
	.aboutTitle {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}
	
	.aboutText {
		text-align: left;
		padding-bottom: 30px;
	}

	.about-section h3 {
		font-size: 1.5rem;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	/* Footer mobile */
	footer {
		padding: 30px 20px;
		flex-direction: column;
		gap: 12px;
	}
	
	/* Sticky button adjustments */
	.sticky-app-button {
		padding: 16px;
	}
	
	.get-app-button {
		padding: 12px 24px;
		font-size: 11px;
	}
}

/* Extra small mobile devices */
@media (max-width: 480px) {
	.headerTitle {
		font-size: 18px;
	}
	
	.featureTitle {
		font-size: 28px;
		letter-spacing: -1.5px;
	}
	
	#features, img {
		max-width: 280px;
		margin: 30px 10px;
	}
	
	.hero-content {
		padding: 14px 24px;

	}
	
	.input-container {
		padding: 10px 14px 10px 20px;
	}
}

/* Sticky Get App Button */
.sticky-app-button {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	pointer-events: none;
}

.get-app-button {
	padding: 12px;
	background: white;
	border-radius: 48px;
	color: #101010;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	pointer-events: auto;
	display: inline-block;
}

.get-app-button:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.get-app-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
