/* ── INTELLIGENCE SECTION — int- prefix ── */

#intelligence {
    border-top: 0.5px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: transparent;
}

/* ── SHARED HEADER PATTERN (matches impact header) ── */
.int-header {
    padding: 48px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 0.5px solid var(--border);
    background: var(--light1);
}

.int-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
}

.int-header-h2 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 52px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.int-header-p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 380px;
    margin: 0;
}

/* ── SUB-SECTION LABEL ── */
.int-sub-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 24px 48px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.int-sub-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--light2);
    flex-shrink: 0;
}

/* ── CHAT SYSTEM — 2 column grid ── */
.int-chat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

/* Add breathing room under the first eyebrow before the dark panel */
.int-sub-label + .int-chat-grid {
    margin-top: 12px;
}

/* LEFT — dark editorial panel */
.int-chat-left {
    background: #242424;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    border-right: 0.5px solid #333;
    min-height: 480px;
}

.int-chat-headline {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.92;
    margin: 0;
}

.int-chat-rule {
    width: 28px;
    height: 2px;
    background: var(--green);
}

.int-chat-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    max-width: 300px;
    margin: 0;
}

.int-chat-quote {
    border-left: 2px solid var(--green);
    padding-left: 16px;
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    margin: 0;
}

/* RIGHT — feature list */
.int-chat-right {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.int-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 48px;
    border-bottom: 0.5px solid var(--border);
}

.int-feature-row:last-child {
    border-bottom: none;
}

.int-feature-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 300;
    color: var(--light2);
    flex-shrink: 0;
    width: 32px;
    padding-top: 2px;
}

.int-feature-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.int-feature-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}

.int-feature-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.int-feature-bullets li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    padding-left: 12px;
    position: relative;
}

.int-feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--green);
}

/* ── CONFIG SECTION — 2 column grid (flipped) ── */
.int-config-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

/* LEFT — light editorial panel */
.int-config-left {
    background: var(--light1);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-right: 0.5px solid var(--border);
    min-height: 480px;
}

.int-config-headline {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.int-config-rule {
    width: 28px;
    height: 2px;
    background: var(--green);
}

.int-config-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 300px;
    margin: 0;
}

.int-config-quote {
    border-left: 2px solid var(--green);
    padding-left: 16px;
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
}

/* RIGHT — dark config cards grid */
.int-config-right {
    background: #242424;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.int-config-card {
    padding: 28px 28px;
    border-bottom: 0.5px solid #333;
    border-right: 0.5px solid #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.int-config-card:nth-child(even) {
    border-right: none;
}

.int-config-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.int-config-card-num {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 300;
    color: var(--green);
    line-height: 1;
}

.int-config-card-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.int-config-card-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.int-config-card-bullets li {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
    padding-left: 10px;
    position: relative;
}

.int-config-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .int-header { padding: 40px 24px 32px; }
    .int-header-h2 { font-size: 36px; }
    .int-chat-grid { grid-template-columns: 1fr; }
    .int-chat-left { padding: 40px 24px; min-height: unset; }
    .int-chat-right { border-top: 0.5px solid var(--border); }
    .int-feature-row { padding: 20px 24px; }
    .int-config-grid { grid-template-columns: 1fr; }
    .int-config-left { padding: 40px 24px; min-height: unset; }
    .int-config-right { grid-template-columns: 1fr; border-top: 0.5px solid #333; }
    .int-config-card:nth-child(even) { border-right: none; }
    .int-config-card { border-right: none; }
    .int-sub-label { padding: 20px 24px 0; }
}