:root {
    --color-bg: #f9fafb;
    --color-text: #1a1a1a;
    --color-text-light: #4b5563;
    --color-orange: #ff6b00;
    --color-orange-light: #ffa15c;
    --color-orange-dark: #cc5600;
    --color-white: #ffffff;
    
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Coming Soon Banner */
.coming-soon-banner {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.03), transparent);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.coming-soon-content h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

.coming-soon-content p {
    color: var(--color-text-light);
    max-width: 600px;
    font-size: 20px;
    line-height: 1.6;
}

.pulse-dot {
    width: 14px;
    height: 14px;
    background: var(--color-orange);
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 0 rgba(255, 107, 0, 0.4);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Background blob animation */
.blob-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, rgba(255,255,255,0) 60%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-50px, 50px); }
}

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

/* Typography elements */
.orange-text, span.orange-text {
    color: var(--color-orange);
    font-weight: 600;
}

/* Navigation */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-orange);
}

.nav-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-outline {
    border: 2px solid var(--color-orange);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--color-orange) !important;
}

.btn-outline:hover {
    background-color: var(--color-orange);
    color: var(--color-white) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-orange-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000000;
    letter-spacing: -2px;
}

.hero-title span {
    color: var(--color-orange);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 0, 0.2);
    z-index: -1;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.1);
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
}

.stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
}

.stat-text {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* Glassmorphism Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.main-card {
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.circle:nth-child(1) { background: #ff5f56; }
.circle:nth-child(2) { background: #ffbd2e; }
.circle:nth-child(3) { background: #27c93f; }

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
}

.mock-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mock-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.zepto { background: linear-gradient(135deg, #FF1E56, #FF4500); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px;}
.blinkit { background: linear-gradient(135deg, #F3C301, #FFD700); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px;}
.amazon { background: linear-gradient(135deg, #232F3E, #000000); color: #FF9900; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px;}
.flipkart { background: linear-gradient(135deg, #2874F0, #1E5AB8); color: #FFE11B; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px; font-style: italic;}

.mock-info h4 {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 600;
}

.mock-info p {
    font-size: 12px;
    color: var(--color-text-light);
}

.price {
    font-size: 20px;
    font-weight: 800;
}

.price.orange {
    color: var(--color-orange);
}

.mock-summary {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 16px;
    border: 1px dashed rgba(255, 107, 0, 0.3);
    font-size: 14px;
    font-weight: 600;
}

.small-card {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.small-card .icon {
    color: var(--color-orange);
}

.floating-1 {
    top: 40px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 60px;
    left: -40px;
    animation: float 5s ease-in-out infinite reverse;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .blob-bg {
        top: -10%;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .small-card {
        display: none;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1000px;
}

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

.about-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-header h3 {
    font-size: 24px;
    color: var(--color-text-light);
    font-weight: 400;
    margin-bottom: 24px;
}

.about-header p {
    font-size: 18px;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 24px;
    background: var(--color-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.about-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 16px;
}

.features-wrapper {
    margin-bottom: 80px;
}

.features-wrapper h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-item {
    padding: 24px;
    border-left: 4px solid var(--color-orange);
    background: var(--color-white);
}

.feature-item h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--color-white);
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.btn-primary.large {
    background: var(--color-white);
    color: var(--color-orange-dark);
    font-size: 20px;
    padding: 20px 40px;
}

.btn-primary.large:hover {
    background: #f9fafb;
    color: var(--color-orange-dark);
}

@media (max-width: 768px) {
    .about-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}
