:root {
    --background: #FFF5F2;
    --surface: #FFFFFF;
    --primary: #FF7A8A;
    --primary-soft: #FFD1D6;
    --accent: #9C8CFF;
    --wine: #6F5CD6;
    --text: #2E2A2C;
    --text-muted: #8A7F85;
    --border: #F2DAD3;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --container: 1100px;
}

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

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

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

/* --- Header --- */
header {
    padding: 24px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text);
}

.brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(111, 92, 214, 0.15);
    border: 8px solid var(--surface);
}

/* --- Features --- */
.features {
    padding: 100px 0;
    background: var(--surface);
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.feature-card {
    padding: 40px;
    background: var(--background);
    border-radius: var(--radius-lg);
    text-align: center;
}

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

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

/* --- Legal --- */
.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin: 32px 0 16px;
    font-size: 1.4rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* --- Buttons --- */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.store-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    text-align: left;
    min-width: 180px;
    transition: transform 0.2s, background 0.2s;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn:hover {
    transform: translateY(-4px);
    background: #222;
    opacity: 1;
}

.store-btn span {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 122, 138, 0.3);
}

/* --- Footer --- */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

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

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .brand {
        margin: 0 auto;
    }
}