@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --pink: #FF3F8F;
    --pink-dark: #E01977;
    --pink-soft: #FFEDF6;
    --purple: #7C42F5;
    --purple-dark: #4E1FB8;
    --purple-soft: #F1EBFF;
    --ink: #2A1742;
    --ink-soft: #6F6680;
    --paper: #FCFAFF;
    --white: #FFFFFF;
    --app-gradient: linear-gradient(135deg, #FF3F8F 0%, #7C42F5 100%);
    --app-gradient-soft: linear-gradient(135deg, rgba(255,63,143,0.10), rgba(124,66,245,0.10));
    --card-border: rgba(124, 66, 245, 0.14);
    --card-shadow: 0 16px 40px rgba(76, 35, 120, 0.08);
    --card-shadow-hover: 0 26px 55px rgba(76, 35, 120, 0.13);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-section {
    position: relative;
    padding: 88px 0;
}

h1, h2, h3 {
    font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--app-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--pink-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow-tag::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--app-gradient);
}

.section-center-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px;
}

.compact-head { margin-bottom: 34px; }

.section-headline {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 14px;
    color: var(--purple-dark);
}

.section-desc {
    font-size: 1.03rem;
    color: var(--ink-soft);
}

.hero-section {
    min-height: 100svh;
    padding: 22px 0 54px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 28%, rgba(255,255,255,.72) 46%, rgba(255,255,255,.18) 66%, rgba(255,255,255,.02) 100%),
        url("/assets/home_discover_chat_hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-container {
    min-height: calc(100svh - 76px);
    display: flex;
    flex-direction: column;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.brand-logo-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hero-header .brand-logo-mark {
    width: min(52vw, 610px);
    max-width: 100%;
    margin-left: -22px;
}

.brand-logo-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Transparent logo: no blending tricks, shadows, or separate background. */
.hero-header .brand-logo-img {
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

.footer-logo {
    width: clamp(260px, 27vw, 360px);
    max-width: 100%;
}

.footer-logo .brand-logo-img {
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}


.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
    padding: 26px 30px 28px 0;
}

.hero-main-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 22px;
    text-shadow: 0 2px 18px rgba(255,255,255,.38);
}

.title-pink { color: var(--pink); }
.title-purple { color: var(--purple); }

.hero-subtext {
    max-width: 560px;
    font-size: 1.12rem;
    color: #665977;
    margin-bottom: 30px;
    text-shadow: 0 1px 12px rgba(255,255,255,.55);
}

.download-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.official-play-badge-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.official-play-badge {
    display: block;
    width: 220px;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.official-play-badge-large { width: 230px; }

.qr-box {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    padding: 9px 18px 9px 9px;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.qr-code {
    width: 78px;
    height: 78px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.qr-info {
    display: flex;
    flex-direction: column;
    font-size: .86rem;
    line-height: 1.28;
}

.qr-info span { color: var(--ink-soft); }
.qr-info strong { color: var(--purple-dark); font-weight: 800; }

.hero-pill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: .84rem;
    font-weight: 800;
    color: var(--purple-dark);
    border: 1px solid var(--card-border);
}

.screens-section {
    background: #fff;
    padding-top: 78px;
    padding-bottom: 78px;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.screen-item {
    text-align: center;
}

.screen-item h3 {
    margin-top: 16px;
    font-size: 1.04rem;
    color: var(--purple-dark);
}

.phone-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.3;
    border-radius: 28px;
    overflow: hidden;
    background: #171125;
    border: 7px solid #171125;
    box-shadow: 0 16px 34px rgba(45, 24, 79, .18);
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255,255,255,.58);
    z-index: 2;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-section { background: var(--paper); }

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.app-style-card {
    background: #fff;
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
}

.badge-pink { background: var(--pink-soft); color: var(--pink-dark); }
.badge-purple { background: var(--purple-soft); color: var(--purple-dark); }
.badge-pink-purple { background: var(--app-gradient-soft); color: var(--purple-dark); }

.app-style-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
    color: var(--pink-dark);
}

.app-style-card:nth-child(even) h3 { color: var(--purple-dark); }

.app-style-card p {
    color: var(--ink-soft);
    font-size: .94rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.app-gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 18px;
    border-radius: 15px;
    text-decoration: none;
    background: var(--app-gradient);
    color: #fff;
    font-weight: 800;
}

.how-section { background: #fff; }

.steps-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-app-card {
    position: relative;
    background: var(--paper);
    padding: 42px 22px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.step-num {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--app-gradient);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-app-card h3 {
    color: var(--purple-dark);
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.step-app-card:nth-child(odd) h3 { color: var(--pink-dark); }
.step-app-card p { color: var(--ink-soft); font-size: .88rem; }

.cta-section { background: var(--paper); }

.cta-gradient-box {
    position: relative;
    background: var(--app-gradient);
    border-radius: 32px;
    padding: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    box-shadow: 0 24px 60px rgba(124,66,245,.25);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-app-icon {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.34);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-app-icon img { width: 50px; height: 50px; object-fit: contain; }

.cta-tag {
    display: block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-left h2 {
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.cta-left h2 span { display: block; }
.cta-left p { margin-top: 8px; opacity: .92; }

.cta-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.cta-qr-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.14);
    padding: 10px 16px 10px 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.3);
}

.cta-qr-box img {
    width: 92px;
    height: 92px;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
}

.cta-qr-box div {
    display: flex;
    flex-direction: column;
    font-size: .86rem;
}

.site-footer {
    position: relative;
    padding: 34px 0 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
    border-top: 1px solid rgba(124, 66, 245, 0.10);
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.site-footer::before {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -120px;
    background: rgba(255, 63, 143, 0.07);
}

.site-footer::after {
    width: 260px;
    height: 260px;
    right: -120px;
    top: -150px;
    background: rgba(124, 66, 245, 0.07);
}

.footer-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    padding: 28px 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(124, 66, 245, 0.12);
    border-radius: 26px;
    box-shadow: 0 16px 42px rgba(76, 35, 120, 0.08);
}

.footer-brand-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.footer-logo {
    width: clamp(310px, 30vw, 430px);
    max-width: 100%;
    margin-left: -14px;
}

.footer-logo .brand-logo-img {
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
    filter: none;
    opacity: 1;
}

.footer-tagline {
    max-width: 520px;
    margin: 4px 0 18px;
    color: var(--ink-soft);
    font-size: .93rem;
    line-height: 1.55;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,63,143,.08), rgba(124,66,245,.09));
    border: 1px solid rgba(124, 66, 245, 0.12);
    color: var(--purple-dark);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    background: linear-gradient(135deg, rgba(255,63,143,.14), rgba(124,66,245,.15));
    border-color: rgba(124, 66, 245, 0.24);
    outline: none;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
    text-align: right;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-size: .8rem;
    font-weight: 800;
}

.footer-status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(255,63,143,.12);
}

.footer-copy {
    font-size: .84rem;
    color: var(--ink-soft);
}

@media (max-width: 1080px) {
    .hero-section {
        background-position: 58% center;
        background-image:
            linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 38%, rgba(255,255,255,.62) 60%, rgba(255,255,255,.08) 100%),
            url("/assets/home_discover_chat_hero.png");
    }

    .screens-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin: 0 auto; }
    .about-cards-grid { grid-template-columns: 1fr; }
    .steps-4-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-gradient-box { flex-direction: column; text-align: center; }
    .cta-left { flex-direction: column; }
    .cta-right { flex-direction: column; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .page-section { padding: 64px 0; }
    .hero-section {
        min-height: 100svh;
        padding-top: 12px;
        padding-bottom: 34px;
        background-position: 66% center;
        background-image:
            linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 28%, rgba(255,255,255,.68) 58%, rgba(255,255,255,.26) 100%),
            url("/assets/home_discover_chat_hero.png");
    }
    .hero-container { min-height: calc(100svh - 46px); }
    .hero-header { margin-bottom: 8px; }
    .hero-header .brand-logo-mark {
        width: min(84vw, 390px);
        max-width: 100%;
        margin-left: -10px;
    }
    .brand-logo-img { width: 100%; height: auto; }
    .hero-content { align-items: flex-start; padding-top: 8px; }
    .hero-copy { width: 100%; padding: 10px 0 24px; text-align: center; }
    .hero-main-title { align-items: center; font-size: clamp(2.45rem, 11vw, 3.35rem); }
    .hero-subtext { max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }
    .download-row { flex-direction: column; justify-content: center; }
    .hero-pill-badges { justify-content: center; }
    .qr-box { width: min(100%, 290px); justify-content: center; }

    .screens-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .phone-frame { border-width: 5px; border-radius: 20px; }
    .screen-item h3 { font-size: .92rem; margin-top: 10px; }

    .steps-4-grid { grid-template-columns: 1fr; }
    .cta-gradient-box { padding: 32px 20px; }
    .site-footer { padding: 24px 0; }
    .footer-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 26px 20px;
        text-align: center;
    }
    .footer-brand-group { align-items: center; }
    .footer-logo {
        width: min(92vw, 390px);
        margin-left: 0;
    }
    .footer-tagline { margin-top: 2px; }
    .footer-links { justify-content: center; }
    .footer-meta {
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .screens-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .phone-frame { border-radius: 17px; }
    .phone-frame::before { width: 32px; height: 4px; top: 6px; }
    .official-play-badge { width: 205px; }
    .qr-code { width: 70px; height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
