/* ===== LANDING V2 ===== */

/* Fade-up on scroll */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-200 { transition-delay: 0.2s; }

/* HERO V2 */
.hero-v2 {
    position: relative;
    background: linear-gradient(135deg, #0f2443 0%, #1A3A5C 50%, #1e4d8c 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
    padding: 5rem 0 3rem;
    color: white;
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatBlob 10s ease-in-out infinite;
}
.blob1 { width: 400px; height: 400px; background: #5DCAA5; top: -100px; right: 5%; animation-delay: 0s; }
.blob2 { width: 300px; height: 300px; background: #7F77DD; bottom: -50px; left: 10%; animation-delay: 3s; }
@keyframes floatBlob {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card-mock { display: none; }
}

.hero-badge {
    display: inline-block;
    background: rgba(93,202,165,0.2);
    border: 1px solid rgba(93,202,165,0.4);
    color: #7ee8c9;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.hero-v2 h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-sub { font-size: 1.1rem; opacity: 0.85; max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.btn-hero-main {
    background: #5DCAA5;
    color: white;
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(93,202,165,0.4);
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-hero-main:hover { background: #3db58a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(93,202,165,0.5); }
.btn-hero-secondary {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: white; }
.hero-cta-note { font-size: 0.8rem; opacity: 0.6; }
.hero-login-link { margin-top: 0.5rem; font-size: 0.875rem; }
.hero-login-link a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.hero-disclaimer { margin-top: 1rem; font-size: 0.75rem; opacity: 0.55; max-width: 480px; }

/* Mock card */
.hero-card-mock { display: flex; flex-direction: column; gap: 1rem; }
.mock-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
}
.mock-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #EF4444; }
.mock-dot.yellow { background: #F59E0B; }
.mock-dot.green { background: #10B981; }
.mock-title { font-size: 0.8rem; opacity: 0.7; margin-left: auto; }
.mock-radar { width: 220px; margin: 0 auto; opacity: 0.9; }
.mock-hyp { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mock-hyp-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.mock-tag { background: rgba(93,202,165,0.2); color: #7ee8c9; padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.75rem; white-space: nowrap; }
.mock-name { flex: 1; opacity: 0.9; }
.mock-pct { color: #7ee8c9; font-weight: 600; }

/* Wave */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* HOW IT WORKS */
.how-section { padding: 5rem 0 3rem; text-align: center; }
.how-section h2 { font-size: 1.9rem; color: var(--blue); margin-bottom: 2.5rem; font-weight: 700; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.step-num { font-size: 2.5rem; font-weight: 800; color: #e5e7eb; line-height: 1; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 1rem; color: var(--blue); margin-bottom: 0.5rem; font-weight: 600; }
.step-card p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.6; }

/* FEATURES */
.features-section { padding: 0 0 4rem; }
.feature-card { transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

/* REPORT PREVIEW */
.preview-section { padding: 4rem 0; background: linear-gradient(180deg, #f0f9ff 0%, var(--bg) 100%); }
.preview-section h2 { font-size: 1.9rem; color: var(--blue); text-align: center; margin-bottom: 0.5rem; font-weight: 700; }
.section-sub { text-align: center; color: var(--text-sec); margin-bottom: 2.5rem; }
.section-kicker { text-align: center; color: var(--teal); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .preview-grid { grid-template-columns: 1fr; } }

.preview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1.5px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.preview-card.pro { border-color: #7F77DD; box-shadow: 0 4px 24px rgba(127,119,221,0.15); }

.preview-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}
.preview-badge.std { background: #f0fdf4; color: #0F6E56; }
.preview-badge.pro-badge { background: linear-gradient(90deg, #7F77DD, #5DCAA5); color: white; }

.preview-body { padding: 1.5rem; flex: 1; }
.prev-section-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-sec); margin-bottom: 0.5rem; }

.prev-bar { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; margin-bottom: 0.35rem; }
.prev-bar span { width: 65px; color: var(--text-sec); flex-shrink: 0; }
.prev-bar-fill { height: 6px; border-radius: 3px; flex: 1; }
.prev-bar b { width: 32px; text-align: right; font-size: 0.75rem; color: var(--text); }

.prev-hyp { display: flex; flex-direction: column; gap: 0.4rem; }
.prev-hyp-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.prev-hyp-label { font-size: 0.7rem; background: var(--bg); padding: 0.15rem 0.4rem; border-radius: 4px; color: var(--text-sec); white-space: nowrap; }
.prev-hyp-pct { margin-left: auto; color: var(--teal); font-weight: 600; }

.prev-strengths { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.prev-strengths span { font-size: 0.75rem; background: #FFF9E6; border: 1px solid #FDE68A; color: #92400E; padding: 0.2rem 0.5rem; border-radius: 12px; }

.prev-pros { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.8rem; }
.prev-prio { font-size: 0.7rem; padding: 0.1rem 0.4rem; border-radius: 4px; margin-left: 0.5rem; }
.prev-prio.high { background: #FEE2E2; color: #991B1B; }
.prev-prio.med  { background: #FEF3C7; color: #92400E; }

.prev-pdf { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-sec); background: var(--bg); padding: 0.4rem 0.75rem; border-radius: 6px; display: inline-block; }

.prev-pro-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.prev-pro-list li { font-size: 0.875rem; }
.prev-pro-list li strong { display: block; margin-bottom: 0.25rem; color: var(--text); }
.prev-narrative-sample { font-size: 0.8rem; color: var(--text-sec); font-style: italic; line-height: 1.6; border-left: 2px solid #7F77DD; padding-left: 0.5rem; display: block; }

.prev-timeline { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.4rem; }
.prev-tl-item { display: flex; align-items: baseline; gap: 0.5rem; font-size: 0.78rem; color: var(--text-sec); }
.prev-tl-age { font-weight: 600; color: #7F77DD; width: 32px; flex-shrink: 0; }
.prev-tl-flag { color: #991B1B; }

.prev-questions { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.4rem; }
.prev-questions div { font-size: 0.78rem; font-style: italic; color: var(--text-sec); background: #f9fafb; padding: 0.3rem 0.5rem; border-radius: 4px; }

/* PRICING enhancements */
.li-no { opacity: 0.45; }
.li-chat {
    background: linear-gradient(90deg, #EDE9FE, #F5F3FF);
    border: 1px solid #C4B5FD;
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    margin-top: 0.35rem;
    font-weight: 600;
    color: #5B21B6;
    list-style: none;
}
.pricing h2 { font-size: 1.9rem; font-weight: 700; }
.price-card { transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* TRUST STRIP */
.trust-strip { padding: 0.5rem 0 3rem; }
.trust-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6rem 2rem; text-align: center; }
.trust-strip-inner span { font-size: 0.85rem; color: var(--text-sec); font-weight: 500; white-space: nowrap; }
@media (max-width: 600px) { .trust-strip-inner { gap: 0.5rem 1.25rem; } .trust-strip-inner span { font-size: 0.8rem; } }

/* FINAL CTA */
.final-cta { padding: 1rem 0 5rem; }
.final-cta-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.final-cta-card h2 { font-size: 1.6rem; color: var(--blue); font-weight: 800; margin-bottom: 0.75rem; }
.final-cta-card p { color: var(--text-sec); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.6; }
.final-cta-note { margin-top: 1rem !important; font-size: 0.8rem; color: var(--text-sec); opacity: 0.8; }

/* Discreet legal/info note (ads landing pages) */
.ads-legal-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-sec);
    line-height: 1.6;
    opacity: 0.85;
}
.ads-legal-note strong { color: var(--text-sec); font-weight: 600; }
.ads-legal-icon { opacity: 0.8; }

/* Generic highlighted card (e.g. "no labels" block on ads landings) */
.highlight-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.highlight-card h2 { font-size: 1.5rem; color: var(--blue); font-weight: 800; margin-bottom: 1rem; }
.highlight-card p { color: var(--text-sec); font-size: 0.98rem; line-height: 1.7; margin-bottom: 0.85rem; }
.highlight-card p:last-child { margin-bottom: 0; }
