/* Blush Velvet Design System - Turny Landing Page */

:root {
    --primary: #ef9fa6;
    --primary-light: #f4c2c6;
    --primary-container: #fce4e6;
    --background: #fdf8f8;
    --surface: #ffffff;
    --text-main: #2c1517;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(239, 159, 166, 0.1), 0 2px 4px -1px rgba(239, 159, 166, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(239, 159, 166, 0.1), 0 4px 6px -2px rgba(239, 159, 166, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(239, 159, 166, 0.1), 0 10px 10px -5px rgba(239, 159, 166, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(239, 159, 166, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

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

.btn-nav {
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-nav:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(255, 255, 255, 0.85);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 7rem;
    }
}

.hero h1 span {
    font-style: italic;
    color: var(--primary);
}

.hero p {
    max-width: 32rem;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.app-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero .app-badges {
        justify-content: flex-start;
    }
}

.standard-badge {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease;
}

.standard-badge:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--surface);
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .features-content h2 {
        font-size: 4rem;
    }
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

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

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-2xl);
    transform: rotate(3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-image:hover img {
    transform: rotate(0);
}

.stat-floating {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--surface);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(239, 159, 166, 0.1);
}

@media (max-width: 768px) {
    .stat-floating {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 2rem;
    }
}

.stat-floating .number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-floating .label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #f8fafc;
    border-top: 1px solid rgba(239, 159, 166, 0.1);
    border-bottom: 1px solid rgba(239, 159, 166, 0.1);
}

.cta-badge {
    display: inline-block;
    background: var(--primary-container);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.cta h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 5rem;
    }
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin: 0 auto 3.5rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .cta-stats {
        flex-direction: column;
        gap: 2.5rem;
    }
}

.cta-stat-item .val {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
}

.cta-stat-item .lab {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 6rem 2rem 4rem;
    background: var(--surface);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #475569;
}

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

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

.footer-social i {
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-social i:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Utilities */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
