:root {
    --primary-color: #FF6B35;
    --primary-dark: #FF9500;
    --text-color: #1C1C1E;
    --background-color: #fef9f7;
    --card-background: #FFFFFF;
    --secondary-text: #8E8E93;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden; /* Prevents horizontal scroll from animations */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 40px;
}

header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-color);
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 2rem;
}

.hero {
    position: relative;
    background-color: var(--background-color);
    padding: 200px 0 150px 0;
    text-align: center;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-text);
}

.social-proof {
    font-size: 1rem !important;
    color: var(--secondary-text) !important;
    margin-top: 1rem;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Add some animated shapes to the background */
.hero-animation::before, .hero-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.1;
    animation: float 10s infinite ease-in-out;
}

.hero-animation::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.hero-animation::after {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

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

#marketing {
    padding: 80px 0;
}

.marketing-point {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.marketing-point.reverse {
    flex-direction: row-reverse;
}

.marketing-text {
    flex: 1;
}

.marketing-text h2 {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.marketing-text p {
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.marketing-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #111;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    padding: 15px;
}

.device-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

#testimonials {
    background-color: var(--card-background);
    padding: 80px 0;
    text-align: center;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: var(--background-color);
    padding: 30px;
    border-radius: 12px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 700;
}

#support {
    padding: 80px 0;
    text-align: center;
}

#support h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.support-content dl {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.support-content dt {
    font-weight: 700;
    margin-top: 1.5rem;
}

.support-content dd {
    margin-left: 0;
    color: var(--secondary-text);
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-store-badge img {
    width: 180px;
    transition: transform 0.3s;
}

.app-store-badge:hover img {
    transform: scale(1.05);
}