/* Home landing — Hindi audience, cosmic marketing */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

.hi {
    font-family: 'Noto Sans Devanagari', 'Outfit', sans-serif;
}

/* Hero */
.home-hero {
    position: relative;
    padding: 3rem 2rem 4rem;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: rgba(212, 175, 55, 0.25);
    top: -60px;
    right: 10%;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.22);
    bottom: 10%;
    left: -40px;
    animation-delay: -3s;
}

.orb-3 {
    width: 160px;
    height: 160px;
    background: rgba(79, 70, 229, 0.2);
    top: 40%;
    right: -30px;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -18px) scale(1.05); }
}

.zodiac-ring {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: ringSpin 90s linear infinite;
    opacity: 0.35;
}

.zodiac-ring span {
    position: absolute;
    font-size: 1.1rem;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
}

.zodiac-ring span:nth-child(1)  { transform: rotate(0deg)   translate(110px) rotate(-0deg); }
.zodiac-ring span:nth-child(2)  { transform: rotate(30deg)  translate(110px) rotate(-30deg); }
.zodiac-ring span:nth-child(3)  { transform: rotate(60deg)  translate(110px) rotate(-60deg); }
.zodiac-ring span:nth-child(4)  { transform: rotate(90deg)  translate(110px) rotate(-90deg); }
.zodiac-ring span:nth-child(5)  { transform: rotate(120deg) translate(110px) rotate(-120deg); }
.zodiac-ring span:nth-child(6)  { transform: rotate(150deg) translate(110px) rotate(-150deg); }
.zodiac-ring span:nth-child(7)  { transform: rotate(180deg) translate(110px) rotate(-180deg); }
.zodiac-ring span:nth-child(8)  { transform: rotate(210deg) translate(110px) rotate(-210deg); }
.zodiac-ring span:nth-child(9)  { transform: rotate(240deg) translate(110px) rotate(-240deg); }
.zodiac-ring span:nth-child(10) { transform: rotate(270deg) translate(110px) rotate(-270deg); }
.zodiac-ring span:nth-child(11) { transform: rotate(300deg) translate(110px) rotate(-300deg); }
.zodiac-ring span:nth-child(12) { transform: rotate(330deg) translate(110px) rotate(-330deg); }

@keyframes ringSpin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.home-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.home-badge-gold {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--gold-glow);
}

.home-hero-copy h1 {
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-highlight {
    background: linear-gradient(90deg, var(--gold-glow), #e8c547, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-hero {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Chat preview card */
.home-hero-card {
    position: relative;
}

.chat-preview {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.08);
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(212,175,55,0.06); }
    50% { box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 50px rgba(212,175,55,0.14); }
}

.chat-preview-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--glass-border);
}

.chat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-size: 1.35rem;
    overflow: hidden;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.chat-preview-head small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.chat-live {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.chat-bubbles {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bubble {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 95%;
}

.bubble-user {
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.3);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.bubble-ai {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom-left-radius: 4px;
}

.chat-preview-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.chat-preview-foot span {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.55rem;
    border-radius: 8px;
}

/* Stats strip */
.home-stats {
    padding: 0 2rem 2rem;
}

.home-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(139,92,246,0.06), rgba(212,175,55,0.08));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-icon {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.stat-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.stat-item span:last-child {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Section helpers */
.section-head-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.home-features {
    padding-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--gold)), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-card a {
    color: var(--gold);
}

/* Topics */
.home-topics {
    background: linear-gradient(180deg, transparent, rgba(138, 43, 226, 0.06), transparent);
}

.home-topics-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.topic-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: default;
}

.topic-chip:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* Enhanced steps */
.steps-grid-enhanced .step-card-enhanced {
    position: relative;
    text-align: left;
    padding-top: 2.5rem;
}

.step-card-enhanced .step-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    margin: 0;
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.steps-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 2rem;
}

/* App band */
.home-app-band {
    margin: 0 2rem 2rem;
    max-width: calc(1200px + 4rem);
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
}

.home-app-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.app-perks {
    list-style: none;
    margin: 1.25rem 0 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.app-perks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.app-perks li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
}

.phone-mock {
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 200px;
    background: #0d0e1a;
    border: 3px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    margin: 0 auto 1rem;
}

.phone-app-name {
    font-family: var(--font-astro);
    color: var(--gold);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.phone-line {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.phone-line.short {
    width: 60%;
}

.phone-bubble {
    margin-top: 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    font-size: 0.72rem;
    line-height: 1.4;
    background: rgba(79, 70, 229, 0.25);
}

.phone-bubble.reply {
    background: rgba(212, 175, 55, 0.12);
    margin-left: 1rem;
}

/* Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

.audience-emoji {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 0.65rem;
}

.audience-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* CTA enhanced */
.cta-band-enhanced {
    position: relative;
    overflow: hidden;
}

.cta-stars {
    color: var(--gold);
    letter-spacing: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.cta-actions {
    justify-content: center;
}

.home-disclaimer {
    margin: 0 2rem 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-disclaimer a {
    color: var(--gold);
    margin-left: 0.35rem;
}

/* FAQ */
.home-faq {
    padding-top: 1rem;
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.1rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 0.65rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq-item a {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .zodiac-ring {
        display: none;
    }

    .features-grid,
    .audience-grid,
    .home-stats-inner {
        grid-template-columns: 1fr;
    }

    .home-app-inner {
        grid-template-columns: 1fr;
    }

    .phone-mock {
        order: -1;
    }

    .home-app-band {
        margin: 0 1rem 1.5rem;
        padding: 1.5rem;
    }

    .home-hero {
        padding: 2rem 1rem 2.5rem;
    }

    .home-stats {
        padding: 0 1rem 1.5rem;
    }
}
