:root {
    --bg-color: #FAF8F3;
    --bg-alt: #F5F1E8;
    --card-bg: #FFFFFF;
    --glass-border: #E6DDCF;
    --text-main: #0B1324;
    --text-muted: #5F697D;
    --primary: #F2B631; /* Sunny Orange */
    --primary-deep: #C98300;
    --primary-gradient: linear-gradient(135deg, #F2B631 0%, #FF8C42 100%);
    --secondary: #3A7BFF; /* Sky Blue */
    --secondary-gradient: linear-gradient(135deg, #3A7BFF 0%, #6366F1 100%);
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glows */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(250, 248, 243, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(242, 182, 49, 0.3);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary, .btn-primary-mini {
    background: var(--primary-gradient);
    padding: 16px 32px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-mini {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-secondary {
    background: var(--card-bg);
    padding: 16px 32px;
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.btn-primary:hover, .btn-primary-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 610px;
    background: #FFFFFF;
    border: 8px solid #0B1324;
    border-radius: 48px;
    position: relative;
    box-shadow: 0 40px 80px -30px rgba(11, 19, 36, 0.12);
    overflow: hidden;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 101%; /* Slight over-coverage to avoid 1px gaps */
    object-fit: cover;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 5;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    padding: 14px 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.95rem;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.badge-1 { 
    top: 10%; 
    right: -80px;
}

.badge-2 { 
    bottom: 25%; 
    left: -80px; 
    animation-delay: 2.5s; 
}

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

/* Features grid */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

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

.glass {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(242, 182, 49, 0.1);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-card {
    text-align: center;
    background: var(--bg-alt);
    border: 2px solid var(--glass-border);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-card p {
    margin: 0 auto 40px;
    max-width: 600px;
    color: var(--text-muted);
}

.download-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: black;
    padding: 12px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 240px;
}

.download-button.ios {
    background: #F1F5F9;
    border: 1px solid var(--glass-border);
    color: #475569;
}

.download-button.ios.disabled {
    opacity: 0.6;
    cursor: default;
}

.download-button:hover {
    transform: scale(1.03);
}

.download-button.ios:hover {
    background: rgba(255, 255, 255, 0.2);
}

.download-button .icon {
    font-size: 2rem;
}

.download-button .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-button .smallText {
    font-size: 0.8rem;
    opacity: 0.7;
}

.download-button .largeText {
    font-size: 1.2rem;
    font-weight: 700;
}

.small-note {
    margin-top: 20px !important;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-text .subtitle { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 240px; height: 480px; }
    .floating-badge { display: none; }
}
