/* ==========================================
   ECOI Report — page-level styles
   ========================================== */

/* ---------- ECOI Calculator Bar ---------- */

/* Collapsed trigger bar */
.ecoi-calc-bar {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ecoi-calc-bar-trigger {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: background 0.15s;
}

.ecoi-calc-bar-trigger:hover {
    background: rgba(255,255,255,0.06);
}

.ecoi-calc-bar-label {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.ecoi-calc-bar-label strong {
    font-weight: 700;
    color: #fff;
}

.ecoi-calc-bar-sub {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.ecoi-calc-bar-arrow {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Expanded form panel */
.ecoi-calc-panel {
    max-height: 0;
    overflow: hidden;
    background: #3730a3;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: max-height 0.3s ease;
}

.ecoi-calc-panel.open {
    max-height: 400px;
}

.ecoi-calc-panel-inner {
    padding: 24px 32px 28px;
}

.ecoi-calc-form {}

.ecoi-calc-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.ecoi-calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ecoi-calc-field label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.ecoi-calc-field select {
    width: 100%;
    padding: 10px 28px 10px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: #fff;
    font-size: 0.875rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.ecoi-calc-field select:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: rgba(59,130,246,0.08);
}

.ecoi-calc-field select option {
    background: #1e293b;
    color: #fff;
}

.ecoi-calc-submit {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.ecoi-calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 10px rgba(37,99,235,0.4);
}

.ecoi-calc-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 14px rgba(37,99,235,0.5);
}

.ecoi-calc-note {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.28);
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 1100px) {
    .ecoi-calc-fields { grid-template-columns: repeat(3, 1fr); }
    .ecoi-calc-submit { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; align-items: center; gap: 16px; }
    .ecoi-calc-panel.open { max-height: 600px; }
}

@media (max-width: 640px) {
    .ecoi-calc-bar-trigger { padding: 14px 20px; }
    .ecoi-calc-bar-sub { display: none; }
    .ecoi-calc-panel-inner { padding: 20px; }
    .ecoi-calc-fields { grid-template-columns: 1fr; }
    .ecoi-calc-submit { grid-column: 1; flex-direction: column; align-items: stretch; }
    .ecoi-calc-btn { width: 100%; justify-content: center; }
    .ecoi-calc-panel.open { max-height: 900px; }
}

/* ---------- Sidebar calculator CTA ---------- */
.ecoi-sidebar-calc-cta {
    background: linear-gradient(135deg, #060d1f 0%, #0f1f40 100%);
    border: 1px solid rgba(59,130,246,0.3);
    text-align: center;
}

.ecoi-sidebar-calc-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 0 0 8px;
    line-height: 1;
    font-family: 'Playfair Display', Georgia, serif;
}

.ecoi-sidebar-calc-score span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
}

.ecoi-sidebar-calc-cta .gg-sidebar-cta-heading {
    color: #fff;
}

.ecoi-sidebar-calc-cta .gg-sidebar-cta-text {
    color: rgba(255,255,255,0.55);
}

.ecoi-sidebar-calc-btn {
    background: linear-gradient(90deg, #4f46e5, #7c3aed) !important;
    box-shadow: 0 2px 10px rgba(109,40,217,0.35);
}

.ecoi-sidebar-calc-btn:hover {
    background: linear-gradient(90deg, #4338ca, #6d28d9) !important;
    box-shadow: 0 4px 14px rgba(109,40,217,0.45);
}

.ecoi-sidebar-calc-cta .gg-sidebar-cta-note {
    color: rgba(255,255,255,0.3);
}

/* Body layout */
.ecoi-body-section {
    padding: 64px 0 80px;
}

/* Widen the container for the article body on large screens */
.ecoi-body-section .landing-container {
    max-width: 1760px;
}

/* Widen the two-column layout and article column */
.ecoi-body-section .gg-layout {
    max-width: 1680px;
    grid-template-columns: 1fr 300px;
    gap: 48px;
}

.ecoi-body-section .gg-article {
    max-width: 1280px;
}

/* Article prose */
.ecoi-article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-700);
}
.ecoi-article-content h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--slate-900);
    margin: 0 0 8px;
    line-height: 1.25;
}
.ecoi-article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 3rem 0 1rem;
    line-height: 1.3;
    padding-top: 8px;
}
.ecoi-article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-800);
    margin: 2rem 0 0.75rem;
    line-height: 1.35;
}
.ecoi-article-content p {
    margin: 0 0 1.25rem;
}
.ecoi-article-content strong {
    font-weight: 700;
    color: var(--slate-900);
}
.ecoi-article-content em {
    font-style: italic;
}
.ecoi-article-content a {
    color: var(--blue-600, #2563eb);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ecoi-article-content a:hover {
    color: var(--blue-700, #1d4ed8);
}
.ecoi-article-content ul,
.ecoi-article-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}
.ecoi-article-content li {
    margin-bottom: 0.4rem;
}
.ecoi-article-content blockquote {
    border-left: 4px solid var(--blue-500, #3b82f6);
    background: #eff6ff;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    color: var(--slate-700);
    font-style: italic;
}
.ecoi-article-content blockquote p {
    margin: 0;
}
.ecoi-article-content blockquote strong {
    color: var(--slate-800);
}
.ecoi-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.82rem;
}
.ecoi-article-content thead th {
    background: var(--slate-50);
    font-weight: 700;
    color: var(--slate-700);
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--slate-200);
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.3;
}
.ecoi-article-content tbody td {
    padding: 8px 12px;
    border: 1px solid var(--slate-200);
    vertical-align: top;
    line-height: 1.4;
}
.ecoi-article-content tbody tr:nth-child(even) {
    background: var(--slate-50);
}
.ecoi-article-content hr {
    border: none;
    border-top: 1px solid var(--slate-200);
    margin: 3rem 0;
}
.ecoi-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1.75rem 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: block;
}
.ecoi-article-content code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.875em;
    background: var(--slate-100);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--slate-800);
}
.ecoi-article-content pre {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.ecoi-article-content pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
}

/* Image lightbox */
.ecoi-article-content img {
    cursor: zoom-in;
}
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    box-sizing: border-box;
}
.img-lightbox.open {
    display: flex;
}
.img-lightbox-img {
    max-width: min(90vw, 1400px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.img-lightbox-actions {
    display: flex;
    gap: 12px;
}
.img-lightbox-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    color: #0f172a;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.img-lightbox-download:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.img-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}
.img-lightbox-close:hover {
    color: white;
}

/* TOC sub-items */
.ecoi-toc-sub {
    padding-left: 12px;
}
.ecoi-toc-sub .gg-toc-link {
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.85;
}

/* Series panel */
.ecoi-series-panel {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}
.ecoi-series-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-500);
    margin: 0 0 12px;
}
.ecoi-series-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ecoi-series-list li {
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.4;
}
.ecoi-series-active {
    background: #eff6ff;
}
.ecoi-series-current {
    font-weight: 600;
    color: var(--blue-600, #2563eb);
}
.ecoi-series-link {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.ecoi-series-link:hover {
    color: var(--blue-600, #2563eb);
}
.ecoi-series-link--cta {
    color: #1d4ed8;
    font-weight: 600;
}

/* Email capture */
.ecoi-email-capture {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}
.ecoi-email-capture-heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0 0 6px;
}
.ecoi-email-capture-text {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0 0 14px;
}
.ecoi-email-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ecoi-email-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--slate-300);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--slate-700);
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.ecoi-email-input:focus {
    border-color: var(--blue-500, #3b82f6);
}
.ecoi-email-btn {
    width: 100%;
    padding: 10px;
    background: var(--blue-600, #2563eb);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.ecoi-email-btn:hover {
    background: var(--blue-700, #1d4ed8);
}
.ecoi-email-note {
    font-size: 0.8125rem;
    color: #16a34a;
    margin: 8px 0 0;
    font-weight: 500;
}

/* Share row */
.ecoi-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    margin: 2rem 0 0;
    flex-wrap: wrap;
}
.ecoi-share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
}
.ecoi-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--slate-100);
    color: var(--slate-600);
    text-decoration: none;
    transition: all 0.15s;
}
.ecoi-share-btn:hover {
    background: var(--blue-600, #2563eb);
    color: white;
}
.ecoi-share-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 36px;
    border-radius: 8px;
    background: var(--slate-100);
    color: var(--slate-600);
    border: none;
    cursor: pointer;
    font-size: 0.8125rem;
    transition: background 0.15s;
}
.ecoi-share-copy:hover {
    background: var(--slate-200);
}

/* Mobile */
@media (max-width: 768px) {
    .ecoi-hero { padding: 60px 0 36px; }
    .ecoi-body-section { padding: 40px 0 60px; }
    .ecoi-article-content h2 { font-size: 1.25rem; }
    .ecoi-article-content h3 { font-size: 1.05rem; }
}

/* ==========================================
   Immersive Hero — Pillar Report
   ========================================== */
.ecoi-dark-summary {
    background: rgba(6, 13, 31, 0.62);
    border: 1px solid rgba(147, 197, 253, 0.18);
    border-left: 3px solid #60a5fa;
    border-radius: 0 8px 8px 0;
    padding: 20px 28px;
    margin: 0 auto 36px;
    text-align: left;
    max-width: 680px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ecoi-dark-summary-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #93c5fd;
    margin: 0 0 14px;
}
.ecoi-dark-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ecoi-dark-summary-list li {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    padding-left: 22px;
    position: relative;
}
.ecoi-dark-summary-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: 700;
}
.ecoi-immersive-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}
.ecoi-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 26px;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}
.ecoi-btn-gold:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.55);
    color: #fff;
}
.ecoi-btn-outlined {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.ecoi-btn-outlined:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}
.ecoi-btn-note {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.6;
    padding-left: 2px;
}
.ecoi-hero-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    font-size: 0.8125rem;
}
.ecoi-hero-read-meta {
    color: rgba(255, 255, 255, 0.38);
}
.ecoi-hero-foot-sep {
    color: rgba(255, 255, 255, 0.2);
}
.ecoi-hero-calc-link {
    color: rgba(147, 197, 253, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.ecoi-hero-calc-link:hover {
    color: #93c5fd;
}

/* ==========================================
   ECOI Spoke Strip — replaces old series strip
   ========================================== */
/* Series navigation strip — dark, flows from the hero */
.ecoi-spoke-strip {
    background: #0d1117;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 36px 0 44px;
}
.ecoi-spoke-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 18px;
}

/* Featured flagship card */
.ecoi-featured-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    border-radius: 10px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(59,130,246,0.4);
    text-decoration: none;
    margin-bottom: 16px;
    transition: border-color .15s, background .15s;
}
.ecoi-featured-card:hover {
    border-color: rgba(59,130,246,0.7);
    background: rgba(37,99,235,0.18);
}
.ecoi-featured-card--active {
    border-color: rgba(59,130,246,0.5);
    background: rgba(37,99,235,0.15);
    pointer-events: none;
}
.ecoi-featured-card-left { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ecoi-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #93c5fd;
}
.ecoi-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.ecoi-featured-desc {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255,255,255,.45);
}
.ecoi-featured-reading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #93c5fd;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Spoke row */
.ecoi-spoke-row {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
}
.ecoi-spoke-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255,255,255,.03);
    transition: border-color .15s, background .15s;
}
.ecoi-spoke-card:hover {
    border-color: rgba(147,197,253,.3);
    background: rgba(255,255,255,.06);
}
.ecoi-spoke-card--active {
    border-color: #3b82f6;
    background: rgba(37,99,235,.12);
    pointer-events: none;
}
.ecoi-spoke-here {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #2563eb;
    color: #fff;
    border-radius: 3px;
    padding: 1px 5px;
    line-height: 1.5;
}
.ecoi-spoke-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 2px;
}
.ecoi-spoke-card--active .ecoi-spoke-label { color: #93c5fd; }
.ecoi-spoke-title {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    line-height: 1.3;
}
.ecoi-spoke-card--active .ecoi-spoke-title { color: #fff; }
.ecoi-spoke-desc {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.75rem;
    color: rgba(255,255,255,.32);
    line-height: 1.4;
    margin-top: 2px;
}
.ecoi-spoke-reading {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #93c5fd;
    margin-top: 6px;
}
@media (max-width: 900px) { .ecoi-spoke-row { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) {
    .ecoi-spoke-row { grid-template-columns: repeat(2,1fr); }
    .ecoi-featured-card { flex-direction: column; gap: 12px; }
}

/* ==========================================
   ECOI Report Band — Homepage
   ========================================== */
.ecoi-band {
    background: linear-gradient(150deg, #0f172a 0%, #1a2f52 55%, #0f172a 100%);
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ecoi-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ecoi-band-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: center;
    position: relative;
}
.ecoi-band-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #60a5fa;
    margin: 0 0 16px;
    padding: 4px 10px;
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 4px;
}
.ecoi-band .ecoi-band-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.ecoi-band .ecoi-band-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 0 28px;
    max-width: 540px;
}
.ecoi-band-links {
    display: flex;
    gap: 8px 20px;
    flex-wrap: wrap;
    align-items: center;
}
.ecoi-band-cta {
    display: inline-block;
    padding: 11px 22px;
    background: #3b82f6;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.ecoi-band-cta:hover {
    background: #2563eb;
    transform: translateY(-1px);
}
.ecoi-band-link {
    font-size: 0.85rem;
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.ecoi-band-link:hover {
    color: #fff;
}
.ecoi-band-img-wrap {
    width: 100%;
}
.ecoi-band-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}
@media (max-width: 900px) {
    .ecoi-band-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ecoi-band-img-wrap {
        max-width: 420px;
    }
}
@media (max-width: 600px) {
    .ecoi-band { padding: 52px 0; }
    .ecoi-band-links { flex-direction: column; align-items: flex-start; gap: 14px; }
    .ecoi-band-img-wrap { display: none; }
}

/* ==========================================
   Article-level CTA (two-path)
   Intentionally does NOT use .final-cta-section
   to avoid landing.css cascade conflicts
   ========================================== */
.ecoi-article-cta {
    background: #0f172a !important;
    padding: 64px 0;
    color: #fff !important;
}
.ecoi-article-cta h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem) !important;
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 8px;
    text-align: center;
    letter-spacing: -0.02em;
}
.ecoi-article-cta > .landing-container > p {
    font-size: 0.925rem;
    color: rgba(255,255,255,0.55) !important;
    text-align: center;
    margin: 0 !important;
}
.ecoi-two-path {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    margin: 36px auto 0;
    max-width: 800px;
    gap: 0;
}
.ecoi-path-card {
    padding: 28px 28px 24px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}
.ecoi-path-newsletter {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}
.ecoi-path-trial {
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.22);
    justify-content: center;
}
.ecoi-path-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin: 0 0 10px;
}
.ecoi-path-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0 0 20px;
    flex: 1;
}
.ecoi-path-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    margin: 10px 0 0;
    text-align: center;
}
.ecoi-path-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}
.ecoi-path-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ecoi-path-trial .btn-primary-landing {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color: #0f172a;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.15s;
}
.ecoi-path-trial .btn-primary-landing:hover {
    background: #e2e8f0;
}
@media (max-width: 680px) {
    .ecoi-two-path {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .ecoi-path-divider {
        padding: 16px 0;
    }
    .ecoi-path-divider::before,
    .ecoi-path-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.1);
        margin: 0 10px;
    }
}
