/* ═══════════════════════════════════════════════════════════
   Landing Page
   ═══════════════════════════════════════════════════════════ */

.landing { min-height: 100vh; overflow: hidden; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196,93,62,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(74,127,181,.06) 0%, transparent 60%),
        var(--bg);
}

.hero::before {
    content: '';
    position: absolute; top: -120px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,93,62,.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .9rem;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .78rem; font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    letter-spacing: .02em;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 680px;
    margin-bottom: 1.25rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}

.btn-google {
    display: inline-flex; align-items: center; gap: .75rem;
    padding: .8rem 2rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: .95rem; font-weight: 500;
    color: var(--text);
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}
.btn-google:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.btn-google svg { width: 20px; height: 20px; }

.hero-note {
    font-size: .78rem; color: var(--text-light);
    margin-top: .25rem;
}

/* ── Features strip ───────────────────────────────────────── */
.features-strip {
    position: absolute; bottom: 3rem;
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 2.5rem;
    font-size: .82rem; color: var(--text-light);
}
.features-strip span {
    display: flex; align-items: center; gap: .4rem;
}
.features-strip .icon {
    width: 18px; height: 18px; opacity: .5;
}

/* ── Floating Elements (subtle depth) ─────────────────────── */
.float-element {
    position: absolute;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: .65rem .9rem;
    font-size: .78rem;
    color: var(--text-muted);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}
.float-element.fe-1 {
    top: 18%; left: 8%;
    animation-delay: 0s;
}
.float-element.fe-2 {
    top: 25%; right: 6%;
    animation-delay: 2s;
}
.float-element.fe-3 {
    bottom: 18%; left: 12%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Dark mode overrides ──────────────────────────────────── */
[data-theme="dark"] .hero {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(224,112,80,.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(106,159,213,.06) 0%, transparent 60%),
        var(--bg);
}
[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(224,112,80,.05) 0%, transparent 70%);
}
[data-theme="dark"] .float-element {
    background: var(--bg-card);
    border-color: var(--border);
}
[data-theme="dark"] .btn-google {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 768px) {
    .features-strip { flex-direction: column; gap: 1rem; bottom: 2rem; }
    .float-element { display: none; }
}
