/* =========================================
   WHAT IS INTENT PAGE
========================================= */

/* --- GLOBALS --- */
.leadiary-intent-hero, .leadiary-intent-rule, .leadiary-intent-signals, .leadiary-intent-scoring {
    font-family: 'Inter', sans-serif;
}
.intent-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }
.text-orange { color: var(--brand-orange); }
.mt-8 { margin-top: 32px; }

/* --- HERO --- */
.leadiary-intent-hero {
    background-color: #fafafa;
    padding: 100px 0 80px;
    border-bottom: 1px solid #e5e7eb;
}
.intent-badge {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.intent-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.intent-subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- THE RULE SECTION --- */
.leadiary-intent-rule {
    padding: 100px 0;
    background-color: #ffffff;
}
.rule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rule-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.rule-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}
.rule-visual {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: center;
}
.funnel-mockup {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.funnel-layer {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
.gray-layer {
    background-color: #e5e7eb;
    color: #6b7280;
    height: 200px;
}
.orange-layer {
    background-color: var(--brand-orange);
    color: #ffffff;
    height: 60px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}
.pulse-arrow {
    position: absolute;
    right: -40px;
    color: var(--brand-orange);
    font-size: 24px;
    animation: bounceRight 2s infinite;
}
.leadiary-target {
    position: absolute;
    right: -170px;
    background: #111827;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* --- REVISED SIGNALS GRID --- */
.leadiary-intent-signals {
    padding: 80px 0 100px;
    background-color: #fafafa;
    border-top: 1px solid #e5e7eb;
}
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-desc {
    text-align: center;
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}
.signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.signal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    transition: transform 0.3s ease;
}
.signal-card:hover {
    transform: translateY(-5px);
}
.signal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.tier-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

/* Tier Specific Colors */
.tier-low .signal-icon { background-color: #f3f4f6; color: #6b7280; }
.tier-low .tier-label { color: #9ca3af; }

.tier-observe .signal-icon { background-color: #eff6ff; color: #3b82f6; }
.tier-observe .tier-label { color: #3b82f6; }

.tier-high .signal-icon { background-color: #FFF0E5; color: var(--brand-orange); }
.tier-high .tier-label { color: var(--brand-orange); }
.tier-high { border-color: var(--brand-orange); box-shadow: 0 10px 30px -10px rgba(255,107,0,0.15); }

.signal-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.signal-def {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 63px;
}
.signal-example {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}
.tweet-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.signal-example p {
    font-size: 13px;
    color: #111827;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* --- SCORING SECTION --- */
.leadiary-intent-scoring {
    background-color: #111827;
    padding: 100px 24px;
    color: white;
}
.leadiary-intent-scoring h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.scoring-desc {
    font-size: 18px;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}
.cta-btn-solid {
    display: inline-block;
    background-color: var(--brand-orange);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.2);
}
.cta-btn-solid:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 107, 0, 0.3);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 991px) {
    .rule-grid { grid-template-columns: 1fr; gap: 40px; }
    .signals-grid { grid-template-columns: 1fr; }
    .pulse-arrow { display: none; }
    .leadiary-target { right: 10px; bottom: -15px; }
}