/* Minimatch Homepage Specific Styles */



/* Hero Gradient Text */
.hero h1 .gradient {
    background: linear-gradient(135deg, #7c5bf5, #34d399, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Paragraph */
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 4rem;
}

/* Hero Price */
.hero-price {
    margin-top: 1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Phone Showcase */
.phone-showcase {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.phone-frame {
    flex: 1;
    max-width: 300px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Center phone slightly larger */
.phone-frame:nth-child(2) {
    max-width: 320px;
    transform: scale(1.05);
}

.phone-frame:nth-child(2):hover {
    transform: scale(1.05) translateY(-10px);
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Screenshot Sections */
.screenshot-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.screenshot-section.reverse {
    flex-direction: row-reverse;
}

.screenshot-text {
    flex: 1;
}

.screenshot-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.screenshot-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.screenshot-image {
    flex: 1;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Screenshots Grid */
.screenshots {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 6rem auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-mockup.center {
    transform: scale(1.1);
    z-index: 2;
}

.phone-mockup.left {
    transform: rotate(-5deg) translateX(20px);
}

.phone-mockup.right {
    transform: rotate(5deg) translateX(-20px);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Discover Section */
.discover {
    padding: 6rem 2rem;
    background: var(--card);
}

.discover-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discover-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.discover-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
}

/* Paint Section */
.paint-section {
    padding: 6rem 2rem;
    text-align: center;
}

.paint-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    margin-bottom: 3rem;
}

/* Scan Section */
.scan-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--purple-glow) 0%, transparent 60%);
}

.scan-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.scan-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--card);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Feature Cards Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Brands Section */
.brands {
    background: var(--card);
    padding: 4rem 2rem;
    text-align: center;
}

.brands h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--bg);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .phone-showcase {
        gap: 1rem;
    }
    
    .phone-frame {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .phone-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .phone-frame {
        max-width: 300px;
    }
    
    .screenshot-section {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}