/* Reset and tokens */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0c0c0c;
    --ink-soft: #1e1e1e;
    --ink-muted: #3a3a3a;
    --cream: #fff5e6;
    --sand: #fff0d8;
    --butter: #ffe76a;
    --sun: #ffd836;
    --sky: #a6d5ff;
    --pink: #ff5fa2;
    --violet: #7b4dff;
    --card: #ffffff;
    --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.14);
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
    --radius-lg: 36px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', 'Space Grotesk', system-ui, sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 245, 230, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    border: 2px solid rgba(0,0,0,0.08);
    z-index: 15;
}

.nav-links.open {
    display: flex;
}

.nav-backdrop {
    display: none;
}

body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    z-index: 10;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    background: #fff;
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Hero */
.hero {
    padding: 80px 0 56px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 231, 106, 0.35), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(255, 95, 162, 0.25), transparent 30%),
                var(--cream);
}

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

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 1;
    margin-bottom: 18px;
}

.hero-lead {
    font-size: 1rem;
    max-width: 100%;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.hero-pill {
    background: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 12px;
    font-weight: 700;
}

.pill-icon {
    font-size: 1.1rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.tag {
    padding: 10px 14px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 6px 6px 0 var(--ink);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.app-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    background: transparent;
    padding: 0;
    height: auto;
    border: none;
    box-shadow: none;
}

.app-button:hover {
    transform: translateY(-2px);
}

.ios-button,
.android-button {
    width: auto;
    height: auto;
    padding: 0;
}

.ios-button img {
    height: 54px;
    width: auto;
    display: block;
}

.android-button img {
    height: 70px;
    width: auto;
    display: block;
}

.hero-social-proof {
    font-weight: 700;
    color: var(--ink);
    margin-top: 8px;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    order: -1;
}

.hero-photo {
    width: clamp(260px, 80vw, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: var(--shadow-strong);
    background: var(--sand);
}

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

.sticker {
    position: absolute;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 800;
    font-family: 'Baloo 2', sans-serif;
    box-shadow: 8px 8px 0 var(--ink);
    color: var(--ink);
    min-width: 90px;
    text-align: center;
}

.sticker-love { top: 8%; left: 6%; background: #ffbad5; }
.sticker-happy { top: 12%; right: 8%; background: #ffe76a; }
.sticker-support { bottom: 12%; left: 8%; background: #a6d5ff; }
.sticker-connection { bottom: 8%; right: 6%; background: #c4ff9f; }

/* Vibe section */
.vibe-section {
    padding: 72px 0;
    background: #fff;
}

.mockups {
    padding: 48px 0 10px;
    background: #fff;
}

.mockups-shell {
    display: grid;
    gap: 28px;
}

.mockups-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.phone-cluster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    justify-items: center;
}

.phone {
    width: clamp(160px, 40vw, 220px);
    aspect-ratio: 9 / 19;
    border-radius: 28px;
    border: 4px solid var(--ink);
    box-shadow: 16px 16px 0 var(--ink), var(--shadow-strong);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.phone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.22));
    mix-blend-mode: screen;
}

.phone-left { transform: rotate(-4deg); }
.phone-center { transform: translateY(-12px); }
.phone-right { transform: rotate(4deg); }

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.vibe-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    line-height: 1.05;
}

.vibe-points {
    display: grid;
    gap: 14px;
    margin: 20px 0 26px;
}

.point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    border: 2px solid #111;
    box-shadow: 6px 6px 0 var(--ink);
}

.point-icon {
    font-weight: 800;
}

.pill-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.vibe-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.preview-card {
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 12px 12px 0 var(--ink);
    display: grid;
    gap: 10px;
}

.preview-label {
    font-weight: 800;
    text-align: center;
    padding: 10px;
    background: var(--butter);
    border-radius: 16px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}

.preview-image {
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    aspect-ratio: 9 / 16;
    border: 2px solid var(--ink);
}

/* Value blocks */
.value-block {
    padding: 72px 0;
}

.value-one {
    background: linear-gradient(180deg, #fff, #fff7e6);
}

.value-two {
    background: linear-gradient(180deg, #ffe76a, #ffd836);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
}

.value-grid.reverse {
    direction: rtl;
}

.value-grid.reverse > * {
    direction: ltr;
}

.value-text h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.value-copy {
    color: var(--ink-muted);
    max-width: 520px;
}

.value-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.value-card {
    border-radius: 26px;
    background-size: cover;
    background-position: center;
    min-height: 220px;
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink);
}

.value-card.tall { min-height: 300px; }
.value-card.small { min-height: 160px; }
.value-card.wide { grid-column: span 2; min-height: 200px; }

/* Blog */
.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
}

.blog {
    padding: 72px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.blog-card {
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    box-shadow: 10px 10px 0 var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 14px 14px 0 var(--ink);
}

.blog-image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

.blog-category {
    padding: 6px 10px;
    background: var(--butter);
    border-radius: 12px;
    border: 2px solid var(--ink);
}

.blog-read-more {
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 72px 0;
    background: var(--sand);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial-card {
    background: #fff;
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--ink);
    display: grid;
    gap: 10px;
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.review-meta {
    font-weight: 800;
}

.review-title {
    font-size: 1.1rem;
}

/* FAQ */
.faq {
    padding: 72px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.faq-item {
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--ink);
}

.faq-question {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--ink-muted);
    font-size: 0.97rem;
}

/* CTA */
.cta {
    padding: 72px 0;
    background: var(--ink);
    color: #fff;
}

.cta-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.cta-text .cta-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin: 10px 0;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
}

.cta-buttons .app-button {
    background: #fff;
}

.cta-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.cta-card {
    width: clamp(220px, 30vw, 320px);
    aspect-ratio: 9 / 16;
    border-radius: 26px;
    border: 3px solid #fff;
    box-shadow: 14px 14px 0 #ffd836, 0 25px 60px rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-position: center;
}

.cta-sticker {
    position: absolute;
    top: -14px;
    right: -14px;
    padding: 12px 16px;
    background: #ffd836;
    border: 2px solid #000;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 6px 6px 0 #000;
}

/* Footer */
.footer {
    background: #0b0b0b;
    color: #fff;
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.footer h4 {
    margin-bottom: 10px;
    font-family: 'Baloo 2', sans-serif;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-download-buttons {
    display: grid;
    gap: 10px;
}

.footer-logo {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    margin-bottom: 8px;
}

.footer-note {
    margin: 8px 0 16px;
    color: rgba(255, 255, 255, 0.8);
}

.language-selector-footer select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid #fff;
    background: #111;
    color: #fff;
    width: 100%;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 12px;
}

/* Animations */
.hero,
.vibe-section,
.value-block,
.blog-card,
.testimonial-card,
.faq-item,
.cta {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (min-width: 720px) {
    .container {
        width: min(1200px, calc(100% - 48px));
    }
    .nav-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
        position: static;
        padding: 0;
        box-shadow: none;
        background: transparent;
        border: none;
        flex-direction: row;
        gap: 22px;
    }
    .hero {
        padding: 110px 0 80px;
    }
    .hero-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 48px;
    }
    .hero-lead {
        max-width: 560px;
        font-size: 1.1rem;
    }
    .hero-visual {
        order: 0;
    }
    .hero-photo {
        width: clamp(320px, 42vw, 520px);
    }
    .mockups-shell {
        gap: 38px;
    }
    .phone-cluster {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
    .vibe-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }
    .vibe-previews {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 36px;
    }
    .value-media {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
    }
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
    }
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
    }
    .cta-shell {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 28px;
    }
    .footer-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .app-button {
        height: 64px;
    }
}
