/* OTONGO memo - Main Styles */
:root {
	--color-primary: #1e5259;
	--color-secondary: #f2a84f;
	--color-accent: #d98484;
	--color-bg: #f4f1ea;
	--color-text: #333333;
	--color-light: #ffffff;
	--font-primary: "Poppins", sans-serif;
	--border-radius: 12px;
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background-color: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

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

/* Organic Cursor Follower */
.cursor-follower {
	position: fixed;
	width: 30px;
	height: 30px;
	background: rgba(242, 168, 79, 0.3);
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
	display: none;
}

@media (min-width: 768px) {
	.cursor-follower {
		display: block;
	}
}

/* Header Styles */
header {
	padding: 1.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba(244, 241, 234, 0.95);
	backdrop-filter: blur(5px);
	transition: var(--transition);
}

header.scrolled {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding: 1rem 5%;
}

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

.logo {
	width: 60px;
	height: auto;
	transition: var(--transition);
}

header.scrolled .logo {
	width: 45px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

nav a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
	transition: var(--transition);
}

nav a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-secondary);
	transition: var(--transition);
	border-radius: 5px;
}

nav a:hover {
	color: var(--color-primary);
}

nav a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5%;
	position: relative;
	overflow: hidden;
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.spiral-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		transparent 30%,
		rgba(30, 82, 89, 0.05) 70%
	);
	z-index: -1;
}

.hero h1 {
	font-size: 4.5rem;
	margin-bottom: 1rem;
	color: var(--color-primary);
	position: relative;
	display: inline-block;
}

.highlight {
	color: var(--color-secondary);
}

.tagline {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-wrapper {
	position: relative;
	display: inline-block;
}

.cta-wrapper::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: radial-gradient(
		circle at center,
		rgba(242, 168, 79, 0.3) 0%,
		transparent 70%
	);
	border-radius: 50px;
	z-index: -1;
	opacity: 0.8;
	animation: pulse 3s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.5;
	}
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--color-primary);
	color: var(--color-light);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	border: 2px solid var(--color-primary);
}

.cta-button:hover {
	background: transparent;
	color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(30, 82, 89, 0.2);
}

/* About Section */
.about {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.about h2,
.features h2,
.waitlist h2,
.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.about h2::after,
.features h2::after,
.waitlist h2::after,
.contact h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 25%;
	width: 50%;
	height: 3px;
	background: var(--color-secondary);
	border-radius: 3px;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 4rem;
	position: relative;
}

.about-text {
	flex: 1;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.flow-graphic {
	flex: 1;
	position: relative;
	min-height: 300px;
}

.flow-circle {
	position: absolute;
	border-radius: 50%;
}

.c1 {
	width: 150px;
	height: 150px;
	background: rgba(30, 82, 89, 0.2);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.c2 {
	width: 120px;
	height: 120px;
	background: rgba(242, 168, 79, 0.2);
	top: 30%;
	right: 10%;
}

.c3 {
	width: 100px;
	height: 100px;
	background: rgba(217, 132, 132, 0.2);
	bottom: 0;
	left: 20%;
}

/* Features Section */
.features {
	padding: 6rem 0;
	background: rgba(30, 82, 89, 0.05);
	position: relative;
}

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

.feature-card {
	background: var(--color-light);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background: rgba(242, 168, 79, 0.1);
	border-radius: 50%;
	z-index: -1;
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
	transform: scale(4);
}

.feature-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	position: relative;
}

.input-icon {
	background: rgba(30, 82, 89, 0.1);
}

.input-icon::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	background: rgba(30, 82, 89, 0.6);
	border-radius: 50%;
}

.edit-icon {
	background: rgba(242, 168, 79, 0.1);
}

.edit-icon::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	background: rgba(242, 168, 79, 0.6);
	border-radius: 3px;
	transform: rotate(45deg);
}

.edit-icon::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	background: rgba(242, 168, 79, 0.6);
	border-radius: 3px;
	transform: rotate(-45deg);
}

.design-icon {
	background: rgba(217, 132, 132, 0.1);
}

.design-icon::before {
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	border: 3px solid rgba(217, 132, 132, 0.6);
	border-radius: 50%;
}

.feature-card h3 {
	margin-bottom: 1rem;
	color: var(--color-primary);
}

/* Waitlist Section */
.waitlist {
	padding: 6rem 0;
	text-align: center;
}

.waitlist p {
	max-width: 700px;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
}

.waitlist-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
	gap: 1rem;
	flex-wrap: wrap;
}

.waitlist-form input {
	flex: 1;
	min-width: 200px;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(30, 82, 89, 0.2);
	border-radius: 50px;
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: var(--transition);
}

.waitlist-form input:focus {
	outline: none;
	border-color: var(--color-primary);
}

.submit-button {
	padding: 1rem 2rem;
	background: var(--color-secondary);
	color: var(--color-light);
	border: none;
	border-radius: 50px;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.submit-button:hover {
	background: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(242, 168, 79, 0.3);
}

.form-response {
	margin-top: 1.5rem;
	font-weight: 500;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	text-align: center;
	background: rgba(242, 168, 79, 0.05);
}

.contact p {
	max-width: 700px;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
}

.contact-link {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--color-primary);
	color: var(--color-light);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	border: 2px solid var(--color-primary);
}

.contact-link:hover {
	background: transparent;
	color: var(--color-primary);
}

/* Footer */
footer {
	background: var(--color-primary);
	color: var(--color-light);
	padding: 3rem 0;
}

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

.footer-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-small {
	width: 40px;
	height: auto;
}

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

.footer-links a {
	color: var(--color-light);
	text-decoration: none;
	transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 991px) {
	.hero h1 {
		font-size: 3.5rem;
	}

	.about-content {
		flex-direction: column;
		gap: 3rem;
	}

	.flow-graphic {
		width: 100%;
	}
}

@media (max-width: 768px) {
	header {
		padding: 1rem 5%;
	}

	nav ul {
		gap: 1rem;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.tagline {
		font-size: 1.2rem;
	}

	.about h2,
	.features h2,
	.waitlist h2,
	.contact h2 {
		font-size: 2rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-logo {
		justify-content: center;
	}
}

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

	.hero h1 {
		font-size: 2.5rem;
	}

	.cta-button,
	.contact-link {
		padding: 0.8rem 1.8rem;
	}

	.waitlist-form {
		flex-direction: column;
	}
}

/* Animation utilities */
.fade-in {
	animation: fadeIn 1.5s;
}

.slide-in-left {
	animation: slideInLeft 1s;
}

.slide-in-right {
	animation: slideInRight 1s;
}

.slide-in-top {
	animation: slideInTop 1s;
}

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

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

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

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