/* ================================================================
   INDEX PAGE STYLES — 51 Insights Company Landing Page
   Hero, differentiators, support, audience, research preview, final CTA
   Trust bar + terminal preview use shared classes from home-shared.css
   ================================================================ */

/* No global font overrides — index uses the same Sora / DM Sans system
   as all other pages via styles.css and home-shared.css */

/* Dashboard preview image with hover CTA */
.hero-terminal-preview {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 40px rgba(10,6,229,0.15), 0 0 80px rgba(88,199,247,0.08), 0 20px 60px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="light"] .hero-terminal-preview {
    border-color: rgba(0,0,0,0.08);
    padding: 3px;
    background: rgba(0,0,0,0.04);
    box-shadow: 0 0 40px rgba(10,6,229,0.08), 0 0 80px rgba(88,199,247,0.04), 0 20px 60px rgba(0,0,0,0.1);
}
.hero-terminal-preview:hover {
    border-color: var(--border-default);
}
.hero-preview-link {
    display: block;
    position: relative;
    cursor: pointer;
}
.hero-preview-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-xl) - 7px);
    transition: filter 0.3s ease;
}
.hero-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    border-radius: inherit;
}
.hero-preview-btn {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
    pointer-events: none;
}
.hero-preview-link:hover .hero-preview-img {
    filter: brightness(0.5);
}
.hero-preview-link:hover .hero-preview-overlay {
    background: rgba(0,0,0,0.2);
}
.hero-preview-link:hover .hero-preview-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media (max-width: 768px) {
    .hero-terminal-preview {
        border-radius: var(--radius-lg);
    }
}

/* Light mode overrides for index-specific sections */
[data-theme="light"] .idx-hero h1 .gradient-text {
    background: linear-gradient(135deg, #0A06E5 0%, #2563eb 50%, #0A06E5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="dark"] .idx-hero-glow { background: radial-gradient(ellipse, rgba(10,6,229,0.18) 0%, rgba(88,199,247,0.04) 50%, transparent 70%); }
[data-theme="light"] .idx-hero-glow { background: radial-gradient(ellipse, rgba(10,6,229,0.06) 0%, transparent 70%); }
/* (old .idx-diff-card overrides removed — now using .idx-diff-compare-card) */
[data-theme="light"] .idx-research-item { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .idx-research-item:hover { background: rgba(0,0,0,0.02); }
[data-theme="light"] .idx-final-cta-glow { background: radial-gradient(ellipse, rgba(10,6,229,0.04) 0%, transparent 70%); }

/* Section labels — turquoise pill badges */
.idx-platform-section .section-label,
.idx-support-section .section-label,
.idx-diff-section .section-label,
.idx-audience-section .section-label {
    display: inline-flex;
    color: var(--brand-light);
    border: 1px solid rgba(88,199,247,0.25);
    background: rgba(88,199,247,0.08);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    margin-bottom: 16px;
}

/* Theme transitions */
html[data-theme] .idx-diff-card,
html[data-theme] .idx-support-card, html[data-theme] .idx-audience-card {
    transition: background-color 0.3s ease, color 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@supports (content-visibility: auto) {
    .idx-support-section,
    .idx-diff-section,
    .idx-audience-section,
    .idx-final-cta,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: auto 720px;
    }
}

/* ================================================================
   HERO
   ================================================================ */
.idx-hero {
    padding: 160px 0 40px;
    position: relative;
    overflow: hidden;
}
.idx-hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}
.idx-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.idx-hero-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    animation: pulse 2s ease-in-out infinite;
}
.idx-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.idx-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--brand-light) 0%, #fff 50%, var(--brand-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}
.idx-mobile-break {
    display: none;
}
.idx-hero h1 .nowrap {
    white-space: nowrap;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}
.idx-hero-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 20px;
    line-height: 1.65;
}
.idx-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-top: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.idx-hero-stats .stat-value {
    color: var(--brand-green);
    font-weight: 600;
}
.idx-hero-stats .stat-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    flex-shrink: 0;
}
.idx-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero ambient glow — follows cursor */
.idx-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(10,6,229,0.12) 0%, rgba(88,199,247,0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
    will-change: left, top;
}

/* ================================================================
   WHAT SETS 51 APART (3-column grid)
   ================================================================ */
.idx-diff-section {
    padding: 80px 0;
}
.idx-diff-header {
    text-align: center;
    margin-bottom: 48px;
}
.idx-diff-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}
.idx-diff-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}
.idx-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.idx-diff-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.idx-diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), inset 0 0 0 1px var(--border-default);
}
.idx-diff-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(10,6,229,0.08);
    box-shadow: inset 0 0 0 1px rgba(10,6,229,0.15);
}
.idx-diff-icon svg {
    width: 20px; height: 20px;
    color: var(--brand-light);
    stroke: currentColor;
}
.idx-diff-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.idx-diff-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

[data-theme="light"] .idx-diff-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .idx-diff-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .idx-diff-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ================================================================
   RESEARCH PREVIEW SECTION
   ================================================================ */
.idx-research-section {
    padding: 80px 0;
}
.idx-research-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.idx-research-left h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 8px;
}
.idx-research-left > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Accordion items */
.idx-accordion-item {
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}
.idx-accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}
.idx-accordion-header:hover { color: var(--text-primary); }
.idx-accordion-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,6,229,0.08);
    flex-shrink: 0;
}
.idx-accordion-icon svg { color: var(--brand-light); }
.idx-accordion-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}
.idx-accordion-arrow {
    width: 16px; height: 16px;
    color: var(--text-faint);
    transition: transform 0.3s var(--ease-out);
}
.idx-accordion-item.active .idx-accordion-arrow {
    transform: rotate(180deg);
}
.idx-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}
.idx-accordion-item.active .idx-accordion-body {
    max-height: 200px;
}
.idx-accordion-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-bottom: 16px;
    padding-left: 44px;
}

/* Research card */
.idx-research-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
}
.idx-research-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand-green));
}
.idx-research-card-body {
    padding: 28px;
}
.idx-research-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.idx-research-card-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(10,6,229,0.12);
    color: var(--brand-light);
}
.idx-research-card-pages {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
}
.idx-research-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 6px;
}
.idx-research-card-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
    margin-bottom: 20px;
}
.idx-research-card-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.idx-research-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* Recent research items */
.idx-recent-research {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.idx-research-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
    transition: background 0.2s ease;
    cursor: default;
}
.idx-research-item:last-child { border-bottom: none; }
.idx-research-item:hover { background: rgba(255,255,255,0.02); }
.idx-research-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}
.idx-research-item-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
    flex-shrink: 0;
    margin-left: 16px;
}

@media (max-width: 768px) {
    .idx-research-layout { grid-template-columns: 1fr; }
}

/* ================================================================
   HOW WE SUPPORT YOUR STRATEGY
   ================================================================ */
.idx-support-section {
    padding: 80px 0;
}
.idx-support-header {
    text-align: center;
    margin-bottom: 48px;
}
.idx-support-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 0;
}
.idx-support-highlight {
    font-weight: 900;
}
.idx-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.idx-support-card {
    background: var(--elevated);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: inset 0 0 0 1px var(--border-subtle), 0 0 20px rgba(10,6,229,0.04);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.idx-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), inset 0 0 0 1px var(--border-default);
}
.idx-support-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(10,6,229,0.08);
    box-shadow: inset 0 0 0 1px rgba(10,6,229,0.15);
}
.idx-support-icon svg {
    width: 20px; height: 20px;
    color: var(--brand-light);
    stroke: currentColor;
}
.idx-support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.idx-support-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
[data-theme="light"] .idx-support-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .idx-support-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .idx-support-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .idx-support-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   51 PLATFORM
   ================================================================ */
.idx-platform-section {
    padding: 80px 0;
}
.idx-platform-header {
    text-align: center;
    margin-bottom: 48px;
}
.idx-platform-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}
.idx-platform-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}
.idx-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.idx-platform-card {
    background: var(--elevated);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.idx-platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), inset 0 0 0 1px var(--border-default);
}
[data-theme="light"] .idx-platform-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .idx-platform-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.08);
}
.idx-platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(10,6,229,0.08);
    box-shadow: inset 0 0 0 1px rgba(10,6,229,0.15);
}
.idx-platform-icon svg {
    width: 20px; height: 20px;
    color: var(--brand-light);
    stroke: currentColor;
}
.idx-platform-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.idx-platform-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .idx-platform-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .idx-platform-grid { grid-template-columns: 1fr; }
    .idx-platform-card { padding: 20px 16px; }
}

/* ================================================================
   DESIGNED FOR FINANCIAL INSTITUTIONS
   ================================================================ */
.idx-audience-section {
    padding: 80px 0;
}
.idx-audience-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.idx-audience-left h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 8px;
}
.idx-audience-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}
.idx-audience-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idx-audience-roles li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}
.idx-audience-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-light);
    flex-shrink: 0;
}
.idx-audience-check {
    flex-shrink: 0;
    margin-right: 2px;
}
.idx-audience-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.idx-audience-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.idx-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), inset 0 0 0 1px var(--border-default);
}
.idx-audience-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.idx-audience-card-top h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.idx-audience-arrow {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}
.idx-audience-card:hover .idx-audience-arrow {
    transform: translateX(3px);
    color: var(--brand);
}
.idx-audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.idx-audience-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--elevated);
    border: 1px solid var(--border-subtle);
}
[data-theme="light"] .idx-audience-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(0,0,0,0.06);
}
[data-theme="light"] .idx-audience-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(0,0,0,0.08);
}
[data-theme="light"] .idx-audience-tag {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .idx-audience-layout { grid-template-columns: 1fr; gap: 40px; }
    .idx-audience-right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .idx-audience-right { grid-template-columns: 1fr; }
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.idx-final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.idx-final-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(10,6,229,0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.idx-final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.idx-final-cta h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 16px;
}
.idx-final-cta-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.idx-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.idx-final-cta-note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
}

/* ================================================================
   TERMINAL PREVIEW — index-specific mobile overrides
   (base styles in home-shared.css; these handle small-screen edge cases)
   ================================================================ */
@media (max-width: 480px) {
    .idx-hero .hero-terminal { margin-top: 28px !important; }
    .idx-hero .hero-terminal-body { height: 200px; }
    .idx-hero .dash { transform: scale(0.45); width: 222%; }
    .idx-hero .dash-sidebar { display: none; }
    .idx-hero .dash { grid-template-columns: 1fr; }
}
@media (max-width: 375px) {
    .idx-hero .hero-terminal-body { height: 180px; }
    .idx-hero .dash { transform: scale(0.4); width: 250%; }
}
@media (max-width: 320px) {
    .idx-hero .hero-terminal-body { height: 160px; }
    .idx-hero .dash { transform: scale(0.35); width: 286%; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .idx-hero-book-call { display: none; }
    .idx-hero { padding: 140px 0 32px; }
    .idx-hero h1 { font-size: clamp(28px, 6vw, 44px); letter-spacing: -0.04em; }
    .idx-mobile-break { display: inline; }
    .idx-hero-sub { font-size: 15px; max-width: 300px; padding: 0 8px; }
    .idx-hero-stats { flex-direction: column; font-size: 12px; gap: 8px; margin-top: 32px; margin-bottom: 24px; }
    .idx-hero-stats .stat-dot { display: none; }

    /* Trust bar — tighten spacing on tablet */
    .idx-hero .hero-trust { margin-top: 32px; margin-bottom: 24px; }

    /* Terminal CTA — tighten */
    .idx-terminal-cta { margin-top: 32px !important; }

    /* Support cards — reduce padding */
    .idx-support-card { padding: 24px 20px; }

    /* Diff section — tighten */
    .idx-diff-section { padding: 60px 0; }
    .idx-diff-header { margin-bottom: 32px; }

    /* Audience section */
    .idx-audience-section { padding: 60px 0; }

    /* Final CTA buttons stack on tablet if needed */
    .idx-final-cta-buttons { gap: 10px; }
}
@media (max-width: 480px) {
    .idx-hero { padding: 120px 0 20px; }
    .idx-hero h1 { font-size: clamp(26px, 7.2vw, 32px); }
    .idx-hero-sub { font-size: 14px; margin-bottom: 20px; }
    .idx-hero-stats { margin-top: 28px; }
    .idx-hero-ctas { flex-direction: column; width: 100%; }
    .idx-hero-ctas .btn { width: 100%; }

    /* Trust bar — compact */
    .idx-hero .hero-trust { margin-top: 24px; margin-bottom: 16px; }

    /* Terminal CTA — reduce spacing and inline size overrides */
    .idx-terminal-cta { margin-top: 24px !important; }
    .idx-terminal-cta h2 { font-size: 20px !important; }
    .idx-terminal-cta p { font-size: 14px !important; }

    /* Support section */
    .idx-support-section { padding: 48px 0; }
    .idx-support-header { margin-bottom: 32px; }
    .idx-support-card { padding: 20px 16px; }
    .idx-support-card h3 { font-size: 16px; }
    .idx-support-card p { font-size: 13px; }

    /* Diff section */
    .idx-diff-section { padding: 48px 0; }
    .idx-diff-card { padding: 24px 20px; }
    .idx-diff-card h3 { font-size: 18px; }

    /* Audience section */
    .idx-audience-section { padding: 48px 0; }
    .idx-audience-layout { gap: 28px !important; }
    .idx-audience-card { padding: 20px; }

    /* Final CTA */
    .idx-final-cta { padding: 48px 0; }
    .idx-final-cta-buttons { flex-direction: column; width: 100%; }
    .idx-final-cta-buttons .btn { width: 100%; }
}
@media (max-width: 375px) {
    .idx-hero { padding: 110px 0 16px; }
    .idx-hero h1 { font-size: 28px; }
    .idx-hero-sub { font-size: 13px; }
    .idx-hero-stats { font-size: 11px; margin-top: 24px; }

    /* Support */
    .idx-support-card { padding: 18px 14px; }

    /* Diff */
    .idx-diff-card { padding: 20px 16px; }
    .idx-diff-card p { font-size: 13px; }

    /* Audience */
    .idx-audience-card { padding: 16px; }
    .idx-audience-tag { font-size: 11px; padding: 3px 10px; }

    /* Final CTA */
    .idx-final-cta { padding: 40px 0; }
    .idx-final-cta-sub { font-size: 14px; }
}
@media (max-width: 320px) {
    .idx-hero { padding: 100px 0 12px; }
    .idx-hero h1 { font-size: 24px; }
    .idx-hero-stats { font-size: 10px; }
    .idx-support-card { padding: 16px 12px; }
    .idx-diff-card { padding: 16px 12px; }
}

/* ================================================================
   2026 ECOSYSTEM HOMEPAGE
   A balanced view of Terminal, Index, research, newsletter and podcast.
   ================================================================ */
.idx-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.idx-hero-sub {
    max-width: 720px;
    margin: 0 auto 32px;
}
.idx-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.idx-hero-stats {
    margin-top: 36px;
    margin-bottom: 0;
}
.idx-intelligence-rail {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 56px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
}
.idx-intelligence-rail a {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, color 0.2s ease;
}
.idx-intelligence-rail a:last-child { border-right: 0; }
.idx-intelligence-rail a:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }
.idx-intelligence-rail span {
    color: #98ea65;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
}
.idx-hero .hero-trust { margin-top: 38px; }

.idx-ecosystem-section,
.idx-decision-section,
.idx-people-section,
.idx-audience-section,
.idx-diff-section {
    padding: 112px 0;
}
.idx-section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 48px;
}
.idx-section-intro .section-label,
.idx-people-header .section-label {
    display: inline-flex;
    margin-bottom: 18px;
}
.idx-section-intro h2,
.idx-people-header h2 {
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}
.idx-section-intro > p,
.idx-people-header > p {
    max-width: 470px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.idx-product-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}
.idx-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    background: var(--surface);
    color: var(--text-primary);
    box-shadow: inset 0 0 0 1px var(--border-subtle), 0 18px 54px rgba(18, 24, 40, 0.06);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
[data-theme="light"] .idx-product-card { background: #fff; }
.idx-product-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px var(--border-default), 0 24px 68px rgba(18, 24, 40, 0.12);
}
.idx-product-card--terminal { grid-column: span 7; }
.idx-product-card--index { grid-column: span 5; }
.idx-product-card--small {
    grid-column: span 4;
    min-height: 560px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.idx-product-copy { padding: 34px 34px 28px; }
.idx-product-kicker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.idx-product-kicker strong { color: var(--brand); font-size: 11px; }
.idx-product-card h3 {
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.08;
    margin-bottom: 14px;
}
.idx-product-card--small h3 { font-size: clamp(23px, 2.2vw, 31px); }
.idx-product-card p {
    max-width: 590px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}
.idx-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}
.idx-product-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--elevated);
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
}
.idx-product-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
}
.idx-product-card--small .idx-product-link { margin-top: auto; padding-top: 24px; }
.idx-product-media { overflow: hidden; }
.idx-product-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.idx-product-media--terminal {
    height: 310px;
    margin: 0 26px 26px;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 44px rgba(0,0,0,0.2);
}
.idx-product-media--index {
    height: 310px;
    margin-top: 8px;
    border-top: 1px solid var(--border-subtle);
}
.idx-research-cover,
.idx-podcast-cover {
    position: relative;
    height: 230px;
    margin: 28px 0 8px;
    overflow: hidden;
    border-radius: 18px;
    background: #0c0d12;
}
.idx-research-cover img {
    position: absolute;
    width: 150px;
    left: 50%;
    top: 24px;
    transform: translateX(-50%) rotate(-3deg);
    filter: drop-shadow(0 20px 24px rgba(0,0,0,0.32));
}
.idx-podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.idx-newsletter-sheet {
    height: 230px;
    margin: 28px 0 6px;
    padding: 26px;
    border-radius: 18px;
    background: #0a06e5;
    color: white;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.idx-newsletter-sheet span {
    display: block;
    margin-bottom: 38px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
}
.idx-newsletter-sheet strong {
    display: block;
    margin-bottom: 22px;
    font-family: 'Sora', sans-serif;
    font-size: 25px;
    line-height: 1.02;
    letter-spacing: -0.055em;
}
.idx-newsletter-sheet i { display: block; width: 100%; height: 1px; margin-top: 8px; background: rgba(255,255,255,0.34); }
.idx-newsletter-sheet i:nth-of-type(2) { width: 82%; }
.idx-newsletter-sheet i:nth-of-type(3) { width: 61%; }

.idx-decision-section { background: var(--surface); }
.idx-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--border-subtle);
    box-shadow: inset 0 0 0 1px var(--border-subtle);
}
.idx-decision-card { min-height: 290px; padding: 36px; background: var(--bg); }
[data-theme="light"] .idx-decision-card { background: #fff; }
.idx-decision-number,
.idx-diff-mark {
    display: inline-flex;
    margin-bottom: 74px;
    color: var(--brand);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
}
.idx-decision-card h3 { font-size: 22px; margin-bottom: 12px; }
.idx-decision-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

.idx-people-panel {
    padding: 56px;
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at 88% 12%, rgba(10,6,229,0.48), transparent 28%),
        linear-gradient(145deg, #090a0d, #14151d 70%, #0a06e5 170%);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 30px 80px rgba(18,24,40,0.18);
}
.idx-people-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}
.idx-people-header h2 { color: #fff; }
.idx-people-header > p { color: #a4a7b0; }
.idx-people-panel .section-label { color: #98ea65; background: rgba(152,234,101,0.08); box-shadow: inset 0 0 0 1px rgba(152,234,101,0.2); }

.idx-audience-left .section-label { margin-bottom: 24px; }
.idx-audience-roles { margin-top: 36px; }
.idx-audience-check {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(10,6,229,0.08);
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
}
.idx-diff-header { max-width: 820px; margin-bottom: 48px; }
.idx-diff-mark { margin-bottom: 54px; }
.idx-diff-card { min-height: 280px; }
.idx-diff-card h3 { font-size: 22px; margin-bottom: 12px; }
.idx-diff-card p { font-size: 14px; line-height: 1.65; }

@media (max-width: 1024px) {
    .idx-product-card--terminal,
    .idx-product-card--index { grid-column: span 6; }
    .idx-product-card--small { grid-column: span 6; }
    .idx-product-card--podcast { grid-column: 4 / span 6; }
    .idx-intelligence-rail { grid-template-columns: repeat(3, 1fr); }
    .idx-intelligence-rail a:nth-child(3) { border-right: 0; }
    .idx-intelligence-rail a:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 760px) {
    .idx-ecosystem-section,
    .idx-decision-section,
    .idx-people-section,
    .idx-audience-section,
    .idx-diff-section { padding: 76px 0; }
    .idx-section-intro,
    .idx-people-header { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
    .idx-section-intro h2,
    .idx-people-header h2 { font-size: clamp(31px, 9vw, 42px); }
    .idx-intelligence-rail { grid-template-columns: 1fr 1fr; }
    .idx-intelligence-rail a { min-height: 62px; padding: 14px; font-size: 11px; }
    .idx-intelligence-rail a:nth-child(2n) { border-right: 0; }
    .idx-intelligence-rail a:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
    .idx-intelligence-rail a:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
    .idx-intelligence-rail a:last-child { grid-column: 1 / -1; border-right: 0; }
    .idx-product-card--terminal,
    .idx-product-card--index,
    .idx-product-card--small,
    .idx-product-card--podcast { grid-column: 1 / -1; }
    .idx-product-card--small { min-height: 520px; }
    .idx-product-media--terminal,
    .idx-product-media--index { height: 230px; }
    .idx-decision-grid { grid-template-columns: 1fr; }
    .idx-decision-card { min-height: auto; padding: 28px; }
    .idx-decision-number { margin-bottom: 40px; }
    .idx-people-panel { padding: 34px 24px; border-radius: 26px; }
}
@media (max-width: 480px) {
    .idx-hero .nowrap { white-space: normal; }
    .idx-hero-sub { max-width: 330px; }
    .idx-intelligence-rail { margin-top: 40px; }
    .idx-product-copy,
    .idx-product-card--small { padding: 24px; }
    .idx-product-media--terminal { margin: 0 18px 18px; }
    .idx-product-card--small { min-height: 500px; }
    .idx-research-cover,
    .idx-podcast-cover,
    .idx-newsletter-sheet { height: 210px; }
}

/* ================================================================
   CLEAN HOMEPAGE HIERARCHY
   One narrative, three uses, one proof block, one conversion path.
   ================================================================ */
.idx-clean-hero .idx-hero-content {
    max-width: 800px;
}
.idx-clean-hero .idx-hero-eyebrow {
    margin-bottom: 24px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.idx-clean-hero .idx-hero-sub {
    max-width: 610px;
    margin-bottom: 32px;
    font-size: 18px;
}
.idx-clean-hero .idx-hero-ctas {
    margin-bottom: 0;
}
.idx-clean-trust {
    max-width: 960px;
    margin: 72px auto 0 !important;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.idx-clean-trust .trust-label {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.46);
}
.idx-clean-trust .trust-logos,
.idx-clean-trust .trust-logos-track {
    overflow: visible;
}
.idx-clean-trust .trust-logos-track {
    width: 100%;
    justify-content: space-between;
    gap: 30px;
    animation: none !important;
    transform: none !important;
}
.idx-clean-trust img.trust-logo {
    max-width: 120px;
    max-height: 24px;
}

.idx-clean-system,
.idx-clean-proof,
.idx-clean-people,
.idx-clean-faq {
    padding: 96px 0;
}
.idx-clean-heading {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}
.idx-clean-heading .section-label {
    display: inline-flex;
    margin-bottom: 20px;
}
.idx-clean-heading h2,
.idx-clean-proof-title h2,
.idx-clean-people-inner h2 {
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.idx-clean-paths {
    max-width: 1040px;
    margin: 0 auto;
    border-top: 1px solid var(--border-default);
}
.idx-clean-path {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 280px;
    align-items: start;
    gap: 34px;
    padding: 46px 0;
    border-bottom: 1px solid var(--border-default);
}
.idx-clean-path-number {
    padding-top: 6px;
    color: var(--brand);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
}
.idx-clean-path-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(25px, 2.5vw, 34px);
    letter-spacing: -0.045em;
}
.idx-clean-path-copy p {
    max-width: 540px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}
.idx-clean-path-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.idx-clean-path-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--border-default);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.2s ease, padding-left 0.2s ease;
}
.idx-clean-path-links a span {
    color: var(--text-muted);
}
.idx-clean-path-links a:hover {
    padding-left: 18px;
    border-left-color: var(--brand);
}

.idx-clean-proof {
    background: var(--surface);
}
.idx-clean-proof-inner {
    max-width: 1040px;
    margin: 0 auto;
}
.idx-clean-proof-title {
    max-width: 790px;
    margin-bottom: 56px;
}
.idx-clean-proof-title .section-label {
    display: inline-flex;
    margin-bottom: 20px;
}
.idx-clean-proof-title > p {
    max-width: 720px;
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.65;
}
.idx-clean-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 34px 0;
    border-top: 1px solid var(--border-default);
    border-bottom: 1px solid var(--border-default);
}
.idx-clean-stats > div {
    padding: 0 28px;
    border-right: 1px solid var(--border-default);
}
.idx-clean-stats > div:first-child { padding-left: 0; }
.idx-clean-stats > div:last-child { padding-right: 0; border-right: 0; }
.idx-clean-stats dt {
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 400 !important;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}
.idx-clean-stats dd {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 12px;
}
.idx-clean-audience {
    max-width: 800px;
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.idx-clean-people-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.idx-clean-founder-photo {
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px var(--border-default), 0 14px 36px rgba(18, 24, 40, 0.12);
}
.idx-clean-founder-meta {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
}
.idx-clean-founder-meta span {
    margin-left: 8px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.idx-clean-people-inner > p {
    max-width: 680px;
    margin: 20px auto 34px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}
.idx-clean-guest-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    max-width: 680px;
    margin: 0 auto 26px;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.idx-clean-guest-faces {
    display: flex;
    padding-left: 8px;
}
.idx-clean-guest-faces img {
    width: 42px;
    height: 42px;
    margin-left: -8px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    object-fit: cover;
    background: var(--elevated);
}
.idx-clean-guest-line p {
    max-width: 340px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}
.idx-clean-text-link,
.idx-clean-final-link {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
}

.idx-clean-final .idx-final-cta-content {
    max-width: 760px;
    margin: 0 auto;
}
.idx-clean-final .section-label {
    display: inline-flex;
    margin-bottom: 22px;
    color: #98ea65;
    background: rgba(152, 234, 101, 0.08);
    box-shadow: inset 0 0 0 1px rgba(152, 234, 101, 0.18);
}
.idx-clean-final .idx-final-cta-buttons {
    flex-direction: column;
    gap: 20px;
}
.idx-clean-final-link { color: #a4a7b0; }
.idx-clean-final-link:hover { color: #ffffff; }

.idx-clean-faq .container {
    max-width: 860px;
}
.idx-clean-faq .pricing-faq-header {
    margin-bottom: 38px;
    text-align: left;
}
.idx-clean-faq .pricing-faq-header h2 {
    font-size: clamp(30px, 3.5vw, 44px);
}

@media (max-width: 900px) {
    .idx-clean-system,
    .idx-clean-proof,
    .idx-clean-people,
    .idx-clean-faq { padding: 92px 0; }
    .idx-clean-path {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 22px;
    }
    .idx-clean-path-links {
        grid-column: 2;
        max-width: 440px;
        margin-top: 8px;
    }
    .idx-clean-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
    .idx-clean-stats > div:nth-child(2) { border-right: 0; }
    .idx-clean-stats > div:nth-child(3) { padding-left: 0; }
}
@media (max-width: 620px) {
    .idx-clean-hero .idx-hero-sub { font-size: 16px; }
    .idx-clean-trust { margin-top: 54px !important; }
    .idx-clean-trust .trust-logos-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 20px;
    }
    .idx-clean-trust img.trust-logo { max-width: 92px; margin: auto; }
    .idx-clean-heading { margin-bottom: 42px; }
    .idx-clean-path {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 34px 0;
    }
    .idx-clean-path-copy h3 { font-size: 25px; }
    .idx-clean-stats {
        grid-template-columns: 1fr 1fr;
        gap: 22px 0;
    }
    .idx-clean-stats > div { padding: 0 16px; }
    .idx-clean-stats dt { font-size: 27px; }
    .idx-clean-guest-line { flex-direction: column; gap: 14px; }
    .idx-clean-guest-line p { text-align: center; }
    .idx-clean-final .idx-final-cta-buttons .btn { width: auto; }
}

/* Newsletter landing page founder module, reused as the canonical treatment. */
.idx-founder-section {
    padding: 0 0 140px;
}
.idx-founder-card {
    display: grid;
    grid-template-columns: 390px 1fr;
    align-items: center;
    gap: 90px;
    overflow: hidden;
    border-radius: 34px;
    background: #070809;
    color: #ffffff;
}
.idx-founder-image {
    position: relative;
    height: 100%;
    min-height: 515px;
    overflow: hidden;
}
.idx-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    filter: saturate(0.72) contrast(1.06);
}
.idx-founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, #070809 100%);
}
.idx-founder-copy {
    padding: 72px 80px 72px 0;
}
.idx-founder-copy .section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #777a83;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.idx-founder-copy .section-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #58c7f7, #0a06e5);
    box-shadow: 0 0 0 5px rgba(10, 6, 229, 0.07);
}
.idx-founder-copy h3 {
    max-width: 570px;
    color: #ffffff;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
}
.idx-founder-copy > p {
    max-width: 630px;
    margin-top: 24px;
    color: #a1a4ad;
    font-size: 16px;
    line-height: 1.7;
}
.idx-founder-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.idx-founder-meta strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}
.idx-founder-meta span {
    display: block;
    color: #777a83;
    font-size: 12px;
}
.idx-founder-meta a {
    margin-left: auto;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

/* Newsletter landing page podcast showcase, reused as the canonical module. */

.voices-section {
    padding: 96px 0;
}
.voices-card {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    column-gap: 36px;
    row-gap: 0;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: #0b0c10;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.voices-copy {
    padding: 56px 0 56px 54px;
}
.voices-copy .section-kicker {
    margin-bottom: 18px;
    color: #777a83;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.voices-copy h2 {
    max-width: 470px;
    color: #ffffff;
    font-size: clamp(2.35rem, 3.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.055em;
}
.voices-copy p {
    max-width: 470px;
    margin-top: 22px;
    color: #a1a4ad;
    font-size: 16px;
    line-height: 1.7;
}
.podcast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.podcast-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
    color: #f2f3f5;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.24s var(--ease-out), background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}
.podcast-link--page {
    background: #ffffff;
    color: #0b0c10;
    box-shadow: inset 0 0 0 1px #ffffff;
}
.podcast-link--page:hover,
.podcast-link--page:focus-visible {
    background: #f0f1f3;
    color: #0b0c10;
}
.podcast-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.84;
    transition: filter 0.24s ease, opacity 0.24s ease, transform 0.24s var(--ease-out);
}
.podcast-link:hover,
.podcast-link:focus-visible {
    color: #0b0c10;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff, 0 12px 30px rgba(0,0,0,0.24);
    transform: translateY(-2px);
}
.podcast-link:hover img,
.podcast-link:focus-visible img {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}
.podcast-link:focus-visible,
.guest:focus-visible,
.guest-company-link:focus-visible {
    outline: 2px solid #58c7f7;
    outline-offset: 3px;
}
.guest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-self: stretch;
    padding: 24px 24px 24px 0;
}
.guest {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 180px;
    aspect-ratio: 0.8;
    border-radius: 12px;
    background: #202228;
    color: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.guest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.guest img.guest-portrait { object-position: 50% 35%; }
.guest:hover img,
.guest:focus-visible img { transform: scale(1.035); }
.guest span {
    position: absolute;
    right: 9px;
    bottom: 9px;
    left: 9px;
    padding: 7px 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.72);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    backdrop-filter: blur(8px);
}
.guest-company-wall {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 20px 24px;
    border-top: 1px solid rgba(17,17,17,0.1);
    background: #f0f0ec;
    color: #111111;
}
.guest-company-intro span {
    display: block;
    color: #777a83;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}
.guest-company-intro strong {
    display: block;
    max-width: 170px;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.guest-company-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin: 0;
    padding: 1px;
    border-radius: 13px;
    background: rgba(17,17,17,0.1);
    list-style: none;
}
.guest-company {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 62px;
    background: rgba(255,255,255,0.9);
    transition: background 0.24s ease, box-shadow 0.24s ease;
}
.guest-company-link {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 8px 6px;
}
.guest-company:hover,
.guest-company:focus-within {
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(17,17,17,0.14), 0 10px 24px rgba(17,17,17,0.08);
}
.guest-company-link:focus-visible {
    border-radius: 7px;
    outline-offset: -3px;
}
.guest-company img {
    display: block;
    width: auto;
    height: auto;
    max-width: 98%;
    max-height: 36px;
    object-fit: contain;
    filter: grayscale(1) contrast(3);
    opacity: 0.8;
    transition: filter 0.24s ease, opacity 0.24s ease, transform 0.3s var(--ease-out);
}
.guest-company img.logo-square { max-width: 46px; max-height: 46px; }
.guest-company img.logo-reverse-black {
    filter: none;
    mix-blend-mode: difference;
    opacity: 1;
}
.guest-company:hover img,
.guest-company:focus-within img {
    opacity: 1;
    transform: scale(1.045);
}

@media (max-width: 1100px) {
    .voices-card { grid-template-columns: 0.7fr 1.3fr; column-gap: 28px; }
    .voices-copy { padding: 58px 0 58px 48px; }
    .guest { min-height: 160px; }
    .idx-founder-card { grid-template-columns: 330px 1fr; gap: 58px; }
    .idx-founder-copy { padding-right: 54px; }
}
@media (max-width: 860px) {
    .voices-card { grid-template-columns: 1fr; gap: 0; }
    .voices-copy { padding: 56px 56px 28px; }
    .guest-grid { padding: 16px 32px 32px; }
    .guest-company-wall { grid-template-columns: 1fr; gap: 14px; padding: 24px 32px 32px; }
    .guest-company-intro strong { max-width: none; }
    .guest-company-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .idx-founder-card { grid-template-columns: 1fr; gap: 0; }
    .idx-founder-image { height: 380px; min-height: 380px; }
    .idx-founder-image::after { background: linear-gradient(0deg, #0b0c10 0%, transparent 34%); }
    .idx-founder-copy { position: relative; z-index: 1; margin-top: -30px; padding: 0 44px 58px; }
}
@media (max-width: 620px) {
    .idx-founder-section { padding-bottom: 76px; }
    .idx-founder-card { min-height: 0; border-radius: 22px; }
    .idx-founder-image { min-height: 320px; }
    .idx-founder-copy { margin-top: -22px; padding: 0 22px 34px; }
    .idx-founder-copy h3 { font-size: 2.2rem; line-height: 1.08; }
    .idx-founder-copy > p { margin-top: 18px; font-size: 14.5px; line-height: 1.62; }
    .idx-founder-meta { flex-wrap: wrap; gap: 14px; margin-top: 25px; padding-top: 21px; }
    .idx-founder-meta a { display: flex; align-items: center; width: 100%; min-height: 44px; margin: 0; }
    .voices-section { padding: 76px 0; }
    .voices-card { border-radius: 22px; }
    .voices-copy { padding: 34px 22px 24px; }
    .voices-copy h2 { font-size: 2.25rem; line-height: 1.08; }
    .voices-copy p { margin-top: 17px; font-size: 14.5px; line-height: 1.58; }
    .podcast-links { margin-top: 22px; }
    .podcast-link { flex: 1 1 140px; }
    .podcast-link--page { flex-basis: 100%; }
    .guest-grid { grid-template-columns: repeat(2, 1fr); padding: 10px; gap: 8px; }
    .guest { min-height: 0; aspect-ratio: 1; }
    .guest-company-wall { gap: 12px; padding: 20px 10px 10px; }
    .guest-company-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); border-radius: 11px; }
    .guest-company,
    .guest-company-link { min-height: 58px; }
    .guest-company img { max-width: 96%; max-height: 30px; }
    .guest-company img.logo-square { max-width: 40px; max-height: 40px; }
}

/* Newsletter landing page work-email form, reused with the same endpoint. */
.idx-final-signup {
    max-width: 650px;
    margin: 38px auto 0;
    text-align: left;
}
.idx-final-signup .form-label {
    display: block;
    margin: 0 4px 9px;
    color: #eceef2;
    font-size: 12px;
    font-weight: 700;
}
.idx-final-signup .signup-stage {
    position: relative;
    isolation: isolate;
}
.idx-final-signup .signup-form {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(17,17,17,0.14), 0 16px 40px rgba(18,24,40,0.2);
    transition: opacity 0.26s ease, transform 0.44s var(--ease-out), box-shadow 0.2s ease;
    transform-origin: center;
}
.idx-final-signup .signup-form:focus-within {
    box-shadow: inset 0 0 0 2px #0a06e5, 0 18px 46px rgba(10,6,229,0.2);
}
.idx-final-signup .signup-form.has-error,
.idx-final-signup .signup-form.has-error:focus-within {
    box-shadow: inset 0 0 0 2px #dc2626, 0 18px 46px rgba(220,38,38,0.16);
}
.idx-final-signup .signup-form input[type='email'] {
    min-width: 0;
    flex: 1;
    height: 52px;
    padding: 0 17px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111111;
    font: 500 16px/1.2 'DM Sans', sans-serif;
}
.idx-final-signup .signup-form input::placeholder { color: #8b8b8b; }
.idx-signup-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 174px;
    height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #302cff 0%, #0a06e5 100%);
    color: #ffffff;
    font: 700 13px/1 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(10,6,229,0.22), inset 0 1px 0 rgba(255,255,255,0.25);
}
.idx-signup-button:hover { background: linear-gradient(180deg, #2420f3 0%, #0805c5 100%); }
.idx-signup-button:focus-visible { outline: 2px solid #58c7f7; outline-offset: 3px; }
.idx-final-signup .button-copy { transition: opacity 0.18s ease, transform 0.28s var(--ease-out); }
.idx-final-signup .button-loader {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.38);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.75);
    animation: idx-button-loader-spin 0.72s linear infinite;
    animation-play-state: paused;
    transition: opacity 0.18s ease, transform 0.25s var(--ease-out);
}
.idx-final-signup .signup-form.is-loading .button-copy { opacity: 0; transform: translateY(-4px); }
.idx-final-signup .signup-form.is-loading .button-loader { opacity: 1; transform: scale(1); animation-play-state: running; }
@keyframes idx-button-loader-spin { to { transform: rotate(360deg); } }
.idx-final-signup .signup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 16px;
    margin: 13px 4px 0;
    color: #777a83;
    font-size: 12.5px;
}
.idx-final-signup .signup-note strong { color: #ffffff; font-weight: 700; }
.idx-final-signup .signup-note span + span::before { content: '•'; margin-right: 16px; color: #777a83; }
.idx-final-signup .form-status {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient(120deg, #f5fff0 0%, #e8fbdc 58%, #f7fff3 100%);
    color: #174b16;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(22,163,74,0.2), 0 18px 44px rgba(15,72,28,0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,11px,0) scale(0.982);
    transition: opacity 0.34s ease 0.08s, transform 0.54s var(--ease-out) 0.08s, visibility 0s linear 0.62s;
}
.idx-final-signup.is-success .signup-form { opacity: 0; transform: translate3d(0,-9px,0) scale(0.985); pointer-events: none; }
.idx-final-signup.is-success .form-status { opacity: 1; visibility: visible; transform: none; transition-delay: 0.1s, 0.1s, 0s; }
.idx-final-signup .success-mark {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #16843a;
    color: #ffffff;
    font-size: 18px;
}
.idx-final-signup .signup-confetti { position: absolute; inset: -110px -42px -90px; z-index: 4; overflow: hidden; pointer-events: none; }
.idx-final-signup .confetti-piece { position: absolute; top: 48%; left: 50%; width: var(--piece-width); height: var(--piece-height); border-radius: 2px; background: var(--piece-color); opacity: 0; transform: translate3d(-50%,8px,0) scale(0.45); }
.idx-final-signup.is-celebrating .confetti-piece { animation: idx-confetti-burst var(--duration) cubic-bezier(0.16,0.75,0.22,1) var(--delay) both; }
@keyframes idx-confetti-burst {
    0% { opacity: 0; transform: translate3d(-50%,8px,0) scale(0.45) rotate(0deg); }
    12%, 52% { opacity: 1; }
    52% { transform: translate3d(var(--x-mid),var(--y-mid),0) scale(1) rotate(var(--rotation-mid)); }
    100% { opacity: 0; transform: translate3d(var(--x-end),var(--y-end),0) scale(0.78) rotate(var(--rotation-end)); }
}
.idx-final-signup .form-error { min-height: 20px; margin: 8px 5px 0; color: #ff918a; font-size: 13px; }
.idx-final-signup .form-error:empty { display: none; }
.idx-final-signup .idx-clean-final-link { display: block; width: fit-content; margin: 21px auto 0; }

@media (max-width: 620px) {
    .idx-clean-proof-title > p { font-size: 15px; }
    .idx-final-signup { margin-top: 27px; }
    .idx-final-signup .signup-form { gap: 6px; padding: 5px; }
    .idx-final-signup .signup-form input[type='email'] { height: 48px; padding: 0 6px 0 13px; font-size: 14px; }
    .idx-signup-button { min-width: 136px; height: 48px; padding: 0 14px; font-size: 11.5px; white-space: nowrap; }
    .idx-final-signup .form-status { gap: 9px; padding: 0 13px; font-size: 11.5px; line-height: 1.25; }
    .idx-final-signup .success-mark { flex-basis: 30px; width: 30px; height: 30px; font-size: 16px; }
    .idx-final-signup .signup-note { display: grid; grid-template-columns: repeat(2,max-content); justify-content: start; gap: 4px 16px; margin-left: 2px; }
    .idx-final-signup .signup-note span + span::before { display: none; }
}

/* ================================================================
   2026 HOMEPAGE — CINEMATIC HERO + REUSABLE PRODUCT STORIES
   ================================================================ */
.idx-clean-hero {
    min-height: 900px !important;
    padding-top: 140px !important;
    padding-bottom: 48px !important;
    background: #000000 !important;
}
.idx-clean-hero::after {
    display: none;
}
.idx-clean-hero .container {
    position: relative;
    z-index: 2;
    isolation: isolate;
}
.idx-clean-hero .idx-hero-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
}
.idx-clean-hero .idx-hero-content h1 {
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(48px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}
.idx-clean-hero .idx-hero-sub {
    max-width: 690px;
    color: #b6b8c0;
    font-size: 19px;
}
.idx-earth-stage {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 48px));
    height: 590px;
    margin: -92px auto -90px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}
.idx-earth-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom,
            rgba(7,8,10,0.82) 0%,
            rgba(7,8,10,0.50) 18%,
            rgba(7,8,10,0.14) 40%,
            rgba(7,8,10,0.20) 72%,
            rgba(7,8,10,0.78) 100%),
        radial-gradient(ellipse at center, transparent 42%, rgba(7,8,10,0.36) 100%);
    pointer-events: none;
}
.idx-earth-stage picture {
    position: absolute;
    inset: -42px 0;
    z-index: 1;
    display: grid;
    place-items: center;
    -webkit-mask-image: radial-gradient(ellipse 84% 76% at 50% 54%, #000 48%, rgba(0,0,0,0.82) 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 84% 76% at 50% 54%, #000 48%, rgba(0,0,0,0.82) 70%, transparent 100%);
}
.idx-earth-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.56) contrast(1.06) brightness(0.72);
    opacity: 0.58;
    transform: translate3d(0, var(--earth-shift, 0px), 0);
    transform-origin: center;
    will-change: transform;
}
.idx-earth-orbit {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(88,199,247,0.22);
    border-radius: 50%;
    pointer-events: none;
}
.idx-earth-orbit--one {
    top: 136px;
    right: 4%;
    bottom: 22px;
    left: 4%;
    transform: rotate(-7deg);
}
.idx-earth-orbit--two {
    top: 184px;
    right: 15%;
    bottom: 66px;
    left: 15%;
    border-color: rgba(255,255,255,0.12);
    transform: rotate(11deg);
}
.idx-clean-trust {
    position: relative;
    z-index: 4;
    margin-top: 34px !important;
}
html[data-theme] .idx-clean-trust img.trust-logo {
    filter: grayscale(1) brightness(0) invert(1) !important;
    opacity: 0.62 !important;
}
html[data-theme] .idx-clean-trust img.trust-logo:hover {
    opacity: 0.92 !important;
}

.intelligence-showcase {
    padding: 96px 0;
    background: #000000 !important;
}

html[data-theme='light'] body main > section.intelligence-showcase {
    background-color: #000000 !important;
}
.intelligence-showcase-heading {
    max-width: 700px;
    margin: 0 0 48px;
    text-align: left;
}
.intelligence-showcase-heading .section-label {
    display: inline-flex;
    margin-bottom: 20px;
}
.intelligence-showcase-heading h2 {
    font-size: clamp(38px, 4.2vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.052em;
}
.intelligence-showcase-heading p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
}
.product-story-card {
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
    align-items: center;
    min-height: 460px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 20px;
    background: #0b0c10;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.product-story-copy {
    padding: 44px 0 44px 48px;
}
.product-story-copy .section-kicker {
    margin-bottom: 14px;
    color: #777a83;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.product-story-copy h2 {
    max-width: 470px;
    color: #ffffff;
    font-size: clamp(2.35rem, 3.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.055em;
}
.product-story-copy > p {
    max-width: 470px;
    margin-top: 18px;
    color: #a1a4ad;
    font-size: 16px;
    line-height: 1.62;
}
.product-story-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.product-story-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
    color: #f2f3f5;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.24s var(--ease-out), background 0.24s ease, color 0.24s ease;
}
.product-story-link--primary {
    background: #ffffff;
    color: #0b0c10;
}
.product-story-link:hover,
.product-story-link:focus-visible {
    background: #ffffff;
    color: #0b0c10;
    transform: translateY(-2px);
}
.product-story-link:focus-visible,
.research-story-visual:focus-visible {
    outline: 2px solid #58c7f7;
    outline-offset: 3px;
}
.product-story-media {
    position: relative;
    min-width: 0;
    align-self: stretch;
}
.product-story-media--terminal {
    display: flex;
    align-items: center;
    padding: 24px 0 24px 14px;
    background:
        radial-gradient(circle at 72% 50%, rgba(48,44,255,0.36), transparent 42%),
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}
.product-story-window {
    width: 112%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px 0 0 18px;
    background: #111317;
    box-shadow: 0 28px 72px rgba(0,0,0,0.46);
    transform: perspective(1500px) rotateY(-5deg) translateX(4%);
    transform-origin: left center;
}
.product-story-window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.product-story-window-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.product-story-window-bar strong {
    margin-left: auto;
    color: rgba(255,255,255,0.46);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
}
.product-story-window img {
    display: block;
    width: 100%;
    height: 320px;
    min-height: 320px;
    object-fit: cover;
    object-position: left top;
}
.product-story-card--research {
    background: #111111;
}
.product-story-media--research {
    display: grid;
    grid-template-columns: minmax(150px, 0.72fr) minmax(280px, 1.28fr);
    gap: 18px;
    align-items: center;
    padding: 28px 28px 28px 8px;
    background:
        radial-gradient(circle at 28% 48%, rgba(88,199,247,0.15), transparent 32%),
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}
.research-report-card,
.adoption-ranking-card {
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.research-report-card {
    align-self: center;
    border-radius: 12px;
    background: #080a0d;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 22px 48px rgba(0,0,0,0.42);
    transform: rotate(-2.4deg) translateY(8px);
}
.research-report-card:hover {
    transform: rotate(-2.4deg) translateY(1px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 28px 58px rgba(0,0,0,0.5);
}
.research-report-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.research-report-card > span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,0.76);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.adoption-ranking-card {
    align-self: center;
    padding: 17px;
    border-radius: 15px;
    background: #f7f7f9;
    color: #111111;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08), 0 24px 54px rgba(0,0,0,0.36);
}
.adoption-ranking-card:hover {
    transform: translateY(-6px);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 30px 64px rgba(0,0,0,0.44);
}
.adoption-ranking-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(5,28,44,0.12);
}
.adoption-ranking-head > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.adoption-ranking-kicker {
    color: #6b6b6b;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.adoption-ranking-head strong {
    color: #051c2c;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.035em;
}
.adoption-ranking-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #6b6b6b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.adoption-ranking-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e23b3b;
    box-shadow: 0 0 0 4px rgba(226,59,59,0.1);
}
.adoption-ranking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 11px 0 14px;
}
.adoption-ranking-meta span {
    padding: 5px 7px;
    border-radius: 999px;
    background: #e9eef2;
    color: #52616c;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.adoption-ranking-columns,
.adoption-ranking-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
}
.adoption-ranking-columns {
    padding: 0 9px 6px;
    color: #8a9298;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.adoption-ranking-columns span:last-child { text-align: right; }
.adoption-ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.adoption-ranking-list li {
    position: relative;
    min-height: 34px;
    padding: 0 9px;
    border-top: 1px solid rgba(5,28,44,0.08);
    overflow: hidden;
}
.adoption-ranking-list li::before {
    content: '';
    position: absolute;
    inset: 5px 0 5px auto;
    z-index: 0;
    width: var(--row-score, 88%);
    border-radius: 6px;
    background: linear-gradient(90deg, transparent 0%, rgba(45,106,176,0.08) 100%);
    pointer-events: none;
}
.adoption-ranking-list li.is-leader {
    --row-score: 94%;
    box-shadow: inset 2px 0 0 #e23b3b;
}
.adoption-ranking-list li > * {
    position: relative;
    z-index: 1;
}
.adoption-rank {
    color: #2d6ab0;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.adoption-ranking-list strong {
    overflow: hidden;
    color: #1d2933;
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.adoption-institution {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}
.adoption-bank-logo {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    overflow: hidden;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(5,28,44,0.08);
}
.adoption-bank-logo img {
    display: block;
    width: 19px;
    height: 19px;
    object-fit: contain;
}
.adoption-bank-logo--wide img {
    width: 21px;
    height: 14px;
}
.adoption-institution strong {
    min-width: 0;
}
.adoption-score {
    color: #051c2c;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.adoption-ranking-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 13px;
    color: #7c858c;
    font-size: 8.5px;
}
.adoption-ranking-foot strong {
    color: #051c2c;
    font-size: 9.5px;
}
.research-report-card:focus-visible,
.adoption-ranking-card:focus-visible {
    outline: 2px solid #58c7f7;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .idx-clean-hero { min-height: 820px !important; }
    .idx-earth-stage {
        left: 50%;
        width: calc(100vw + 72px);
        max-width: none;
        height: 500px;
        margin-top: -64px;
        margin-bottom: -66px;
        transform: translateX(-50%);
    }
    .idx-earth-stage picture { inset: -40px 0; }
    .idx-earth-orbit--one { top: 126px; right: 3%; bottom: 22px; left: 3%; }
    .idx-earth-orbit--two { top: 168px; right: 15%; bottom: 58px; left: 15%; }
    .product-story-card { grid-template-columns: 1fr; min-height: 0; }
    .product-story-copy { padding: 44px 44px 10px; }
    .product-story-media--terminal { min-height: 380px; padding-left: 44px; }
    .product-story-media--research { min-height: 420px; padding: 20px 40px 36px 20px; }
}
@media (max-width: 620px) {
    .idx-clean-hero { min-height: 700px !important; padding-top: 112px !important; }
    .idx-clean-hero .idx-hero-content h1 { font-size: clamp(38px, 10vw, 44px); }
    .idx-clean-hero .idx-hero-sub { font-size: 16px; }
    .idx-earth-stage {
        width: 146vw;
        height: 350px;
        margin-top: -12px;
        margin-bottom: -34px;
    }
    .idx-earth-stage picture { inset: -35px 0; }
    .idx-earth-orbit--one { top: 88px; right: 1%; bottom: 18px; left: 1%; }
    .idx-earth-orbit--two { top: 120px; right: 13%; bottom: 48px; left: 13%; }
    .idx-clean-trust { margin-top: 30px !important; }
    .intelligence-showcase { padding: 82px 0; }
    .intelligence-showcase-heading { margin-bottom: 42px; }
    .product-story-card { gap: 0; border-radius: 22px; margin-top: 18px; }
    .product-story-copy { padding: 30px 22px 22px; }
    .product-story-copy h2 { font-size: 2.25rem; line-height: 1.08; }
    .product-story-copy > p { font-size: 14.5px; line-height: 1.58; }
    .product-story-link { flex: 1 1 145px; }
    .product-story-media--terminal { min-height: 270px; padding: 12px 0 16px 18px; overflow: hidden; }
    .product-story-window { transform: none; width: 106%; }
    .product-story-window img { height: 250px; min-height: 0; object-fit: cover; object-position: left top; }
    .product-story-media--research {
        grid-template-columns: minmax(108px, 0.68fr) minmax(194px, 1.32fr);
        min-height: 310px;
        padding: 8px 14px 28px 8px;
        gap: 9px;
    }
    .adoption-ranking-card { padding: 13px 11px; border-radius: 12px; }
    .adoption-ranking-head { gap: 8px; padding-bottom: 10px; }
    .adoption-ranking-head strong { font-size: 13px; }
    .adoption-ranking-kicker,
    .adoption-ranking-live { font-size: 7px; }
    .adoption-ranking-meta { gap: 3px; padding: 8px 0 10px; }
    .adoption-ranking-meta span { padding: 4px 5px; font-size: 6.5px; }
    .adoption-ranking-columns,
    .adoption-ranking-list li { grid-template-columns: 24px minmax(0, 1fr) 28px; gap: 5px; }
    .adoption-ranking-columns { padding: 0 6px 5px; font-size: 6.5px; }
    .adoption-ranking-list li { min-height: 31px; padding: 0 6px; }
    .adoption-rank { font-size: 8px; }
    .adoption-ranking-list strong { font-size: 8.5px; }
    .adoption-score { font-size: 10px; }
    .adoption-ranking-foot { gap: 6px; padding-top: 9px; font-size: 6.5px; }
    .adoption-ranking-foot strong { font-size: 7.5px; }
    .research-report-card > span { right: 7px; bottom: 7px; padding: 5px 7px; font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
    .idx-earth-image { transform: none; will-change: auto; }
}

/* ================================================================
   2026 HOMEPAGE — BALANCE PASS
   Larger uninterrupted earth, quieter proof modules and compact FAQ.
   ================================================================ */
.idx-clean-hero {
    min-height: 800px !important;
    padding-top: 112px !important;
    padding-bottom: 26px !important;
}
.idx-earth-stage {
    left: 50%;
    width: 100vw;
    height: 540px;
    margin: -82px 0 -170px -50vw;
}
.idx-earth-stage picture {
    inset: -100px 0 -78px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
}
.idx-earth-image {
    object-fit: cover;
    object-position: center 54%;
    opacity: 0.7;
    transform: translate3d(0, var(--earth-shift, 0px), 0) scale(1.02);
}
.idx-earth-stage::after {
    background:
        linear-gradient(to bottom,
            #000000 0%,
            rgba(0,0,0,0.62) 16%,
            rgba(0,0,0,0.10) 42%,
            rgba(0,0,0,0.18) 70%,
            #000000 100%),
        linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 28%, transparent 78%, rgba(0,0,0,0.48) 100%),
        radial-gradient(ellipse at center, transparent 48%, rgba(0,0,0,0.3) 100%);
}
.idx-earth-orbit--one {
    top: 106px;
    right: 2%;
    bottom: 18px;
    left: 2%;
}
.idx-earth-orbit--two {
    top: 150px;
    right: 13%;
    bottom: 58px;
    left: 13%;
}
.idx-clean-hero .idx-clean-trust {
    max-width: 960px;
    margin: 0 auto !important;
    padding: 18px 0 0 !important;
}
.idx-clean-hero .idx-clean-trust .trust-label {
    margin: 0 0 18px;
}
.idx-clean-hero .idx-clean-trust .trust-logos-track {
    justify-content: center;
    gap: clamp(18px, 2.5vw, 30px);
}
.idx-clean-hero .idx-clean-trust img.trust-logo {
    width: 124px;
    height: 32px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.product-story-media--research {
    grid-template-columns: minmax(124px, 0.52fr) minmax(300px, 1.48fr);
    padding: 28px 28px 28px 16px;
}
.research-report-card {
    width: min(100%, 138px);
    justify-self: center;
    transform: none;
}
.research-report-card:hover {
    transform: translateY(-4px);
}
.research-report-card img {
    height: auto;
    aspect-ratio: 1414 / 2000;
    object-fit: contain;
}

.idx-clean-proof {
    padding: 84px 0;
}
.idx-clean-proof-inner {
    max-width: 1120px;
}
.idx-clean-proof-title {
    max-width: 920px;
    margin-bottom: 42px;
}
.idx-clean-proof-title h2 {
    font-size: clamp(40px, 5.2vw, 64px);
}
.idx-proof-accent {
    color: var(--brand);
}
html[data-theme='dark'] .idx-proof-accent {
    color: var(--brand-light);
}
.idx-clean-proof-title > p {
    max-width: 700px;
    margin-top: 20px;
}
.idx-clean-stats {
    gap: 10px;
    padding: 0;
    border: 0;
}
.idx-clean-stats > div {
    min-height: 126px;
    padding: 24px;
    border: 0;
    border-radius: 14px;
    background: var(--bg);
    box-shadow: inset 0 0 0 1px var(--border-subtle);
}
.idx-clean-stats > div:first-child,
.idx-clean-stats > div:last-child {
    padding: 24px;
}
.idx-clean-audience {
    max-width: 860px;
    margin-top: 24px;
}

.pricing-faq.idx-clean-faq {
    padding: 54px 0 58px;
    background: var(--surface);
    box-shadow: inset 0 1px 0 var(--border-faint);
}
html[data-theme="light"] .pricing-faq.idx-clean-faq {
    background: #f3f3f5;
}
.pricing-faq.idx-clean-faq .container {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
    max-width: 900px;
}
.pricing-faq.idx-clean-faq .pricing-faq-header {
    margin: 0;
}
.pricing-faq.idx-clean-faq .pricing-faq-header .section-label {
    margin-bottom: 14px;
    color: var(--text-faint);
    background: transparent;
    box-shadow: none;
}
.pricing-faq.idx-clean-faq .pricing-faq-header h2 {
    max-width: 170px;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.04em;
}
.pricing-faq.idx-clean-faq .pricing-faq-list {
    width: 100%;
    max-width: none;
}
.pricing-faq.idx-clean-faq .pricing-faq-btn {
    padding: 15px 0;
    font-size: 14px;
}
.pricing-faq.idx-clean-faq .pricing-faq-answer p {
    padding: 0 32px 16px 0;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .idx-clean-hero { min-height: 720px !important; padding-top: 106px !important; padding-bottom: 28px !important; }
    .idx-earth-stage {
        width: 112vw;
        height: 470px;
        margin: -68px 0 -142px -56vw;
    }
    .idx-earth-stage picture { inset: -86px 0 -68px; }
    .idx-earth-orbit--one { top: 102px; right: 3%; bottom: 22px; left: 3%; }
    .idx-earth-orbit--two { top: 138px; right: 14%; bottom: 58px; left: 14%; }
    .idx-clean-hero .idx-clean-trust { margin-top: 0 !important; }
    .idx-clean-hero .idx-clean-trust img.trust-logo { width: 112px; height: 28px; }
    .product-story-media--research {
        grid-template-columns: minmax(142px, 0.5fr) minmax(310px, 1.5fr);
        padding: 24px 40px 36px 24px;
    }
    .research-report-card { width: min(100%, 146px); }
    .pricing-faq.idx-clean-faq { padding: 48px 0 52px; }
    .pricing-faq.idx-clean-faq .container {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 36px;
    }
}

@media (max-width: 620px) {
    .idx-clean-hero { min-height: 650px !important; padding-top: 102px !important; padding-bottom: 24px !important; }
    .idx-earth-stage {
        width: 156vw;
        height: 360px;
        margin: -18px 0 -98px -78vw;
    }
    .idx-earth-stage picture { inset: -54px 0 -42px; }
    .idx-earth-image { transform: translate3d(0, var(--earth-shift, 0px), 0) scale(1.02); }
    .idx-earth-orbit--one { top: 78px; right: 2%; bottom: 18px; left: 2%; }
    .idx-earth-orbit--two { top: 108px; right: 14%; bottom: 46px; left: 14%; }
    .idx-clean-hero .idx-clean-trust {
        margin-top: 0 !important;
        padding-top: 16px !important;
    }
    .idx-clean-hero .idx-clean-trust .trust-label { margin-bottom: 16px; }
    .idx-clean-hero .idx-clean-trust .trust-logos-track { gap: 20px; }
    .idx-clean-hero .idx-clean-trust img.trust-logo { width: 104px; height: 26px; }
    .product-story-media--research {
        grid-template-columns: 92px minmax(194px, 1fr);
        min-height: 300px;
        padding: 14px 14px 22px 12px;
        gap: 10px;
    }
    .research-report-card { width: 82px; }
    .pricing-faq.idx-clean-faq { padding: 42px 0 46px; }
    .pricing-faq.idx-clean-faq .container {
        display: block;
    }
    .pricing-faq.idx-clean-faq .pricing-faq-header {
        margin-bottom: 20px;
    }
    .pricing-faq.idx-clean-faq .pricing-faq-header h2 {
        max-width: none;
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .idx-earth-image { transform: scale(1.06); }
}

/* ================================================================
   2026 HOMEPAGE — CLARITY PASS
   Tighter hero, explicit product paths and separate research/index stories.
   ================================================================ */
.idx-clean-hero {
    min-height: 740px !important;
    padding-top: 102px !important;
    padding-bottom: 46px !important;
}
.idx-earth-stage {
    height: 500px;
    margin: -100px 0 -192px -50vw;
}
.idx-earth-stage picture {
    inset: -88px 0 -70px;
}
.idx-clean-hero .idx-clean-trust {
    padding-top: 16px !important;
}
.idx-clean-hero .idx-clean-trust .trust-label {
    margin-bottom: 15px;
}

.intelligence-showcase-heading {
    max-width: 760px;
}
.intelligence-showcase-heading p {
    max-width: 650px;
}
.product-story-copy .section-kicker,
.voices-copy .section-kicker {
    color: #58c7f7;
    font-size: 12px;
    letter-spacing: 0.13em;
}

.product-story-card--research {
    background: #0b0c10;
}
.product-story-media--research {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 460px;
    padding: 34px 28px;
    background:
        radial-gradient(circle at 50% 48%, rgba(88,199,247,0.18), transparent 38%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
}
.research-cover-stack {
    position: relative;
    width: min(100%, 620px);
    height: 350px;
}
.research-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 190px;
    overflow: hidden;
    border-radius: 10px;
    background: #090b0e;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 24px 52px rgba(0,0,0,0.48);
    line-height: 0;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.research-cover img {
    display: block;
    width: 100%;
    height: auto;
}
.research-cover--one {
    z-index: 3;
    width: 214px;
    transform: translate(-50%, -50%);
}
.research-cover--two {
    z-index: 1;
    left: 22%;
    transform: translate(-50%, -48%) rotate(-7deg);
}
.research-cover--three {
    z-index: 1;
    left: 78%;
    transform: translate(-50%, -48%) rotate(7deg);
}
.research-cover--one:hover,
.research-cover--one:focus-visible {
    transform: translate(-50%, calc(-50% - 8px));
}
.research-cover--two:hover,
.research-cover--two:focus-visible {
    z-index: 4;
    transform: translate(-50%, calc(-48% - 8px)) rotate(-4deg);
}
.research-cover--three:hover,
.research-cover--three:focus-visible {
    z-index: 4;
    transform: translate(-50%, calc(-48% - 8px)) rotate(4deg);
}
.research-cover:focus-visible {
    outline: 2px solid #58c7f7;
    outline-offset: 4px;
}

.product-story-card--index {
    background: #101217;
}
.product-story-media--index {
    display: grid;
    place-items: center;
    min-height: 460px;
    padding: 38px 54px;
    background:
        radial-gradient(circle at 52% 48%, rgba(45,106,176,0.2), transparent 42%),
        linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}
.product-story-media--index .adoption-ranking-card {
    width: min(100%, 430px);
}

@media (max-width: 900px) {
    .idx-clean-hero {
        min-height: 680px !important;
        padding-top: 98px !important;
        padding-bottom: 38px !important;
    }
    .idx-earth-stage {
        width: 112vw;
        height: 440px;
        margin: -80px 0 -164px -56vw;
    }
    .idx-earth-stage picture { inset: -70px 0 -56px; }
    .product-story-media--research,
    .product-story-media--index { min-height: 400px; }
    .product-story-media--research { padding: 24px 34px 36px; }
    .product-story-media--index { padding: 36px 72px; }
}

@media (max-width: 620px) {
    .idx-clean-hero {
        min-height: 600px !important;
        padding-top: 94px !important;
        padding-bottom: 34px !important;
    }
    .idx-earth-stage {
        width: 156vw;
        height: 330px;
        margin: -26px 0 -116px -78vw;
    }
    .idx-earth-stage picture { inset: -48px 0 -38px; }
    .idx-clean-hero .idx-clean-trust { padding-top: 14px !important; }
    .idx-clean-hero .idx-clean-trust .trust-label { margin-bottom: 14px; }
    .product-story-media--research,
    .product-story-media--index { min-height: 300px; }
    .product-story-media--research { padding: 12px 10px 24px; }
    .research-cover-stack { height: 270px; }
    .research-cover { width: 124px; border-radius: 7px; }
    .research-cover--one { width: 150px; }
    .research-cover--two { left: 20%; }
    .research-cover--three { left: 80%; }
    .product-story-media--index { padding: 24px 14px 28px; }
    .product-story-media--index .adoption-ranking-card { width: min(100%, 330px); }
}

/* Subtle motion markers on the hero's institutional-activity orbits. */
.idx-orbit-satellite {
    --satellite-size: 5px;
    --satellite-color: #58c7f7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: var(--satellite-size);
    height: var(--satellite-size);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 50%;
    background: var(--satellite-color);
    box-shadow:
        0 0 0 3px color-mix(in srgb, var(--satellite-color) 12%, transparent),
        0 0 12px color-mix(in srgb, var(--satellite-color) 72%, transparent);
    /* Match the orbit border exactly; the marker's centre sits on the 50% ellipse. */
    offset-path: ellipse(50% 50% at 50% 50%);
    offset-anchor: 50% 50%;
    offset-rotate: 0deg;
    pointer-events: none;
    will-change: offset-distance;
    animation: idx-orbit-satellite var(--satellite-duration) linear infinite;
    animation-delay: var(--satellite-delay);
}
.idx-orbit-satellite--one {
    --satellite-duration: 24s;
    --satellite-delay: -6s;
}
.idx-orbit-satellite--two {
    --satellite-size: 3px;
    --satellite-color: #ffffff;
    --satellite-duration: 34s;
    --satellite-delay: -25s;
    opacity: 0.72;
}
.idx-orbit-satellite--three {
    --satellite-size: 4px;
    --satellite-color: #8bdcff;
    --satellite-duration: 19s;
    --satellite-delay: -12s;
    opacity: 0.86;
}
@keyframes idx-orbit-satellite {
    to { offset-distance: 100%; }
}

@media (max-width: 620px) {
    .idx-orbit-satellite--two { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .idx-orbit-satellite {
        animation: none;
        offset-distance: 18%;
        will-change: auto;
    }
    .idx-orbit-satellite--two { offset-distance: 63%; }
    .idx-orbit-satellite--three { offset-distance: 78%; }
}

/* Homepage product stack starts directly with the product stories. */
.intelligence-showcase {
    padding-top: 72px;
}
.intelligence-showcase > .container > .product-story-card:first-child {
    margin-top: 0;
}

@media (max-width: 620px) {
    .intelligence-showcase { padding-top: 56px; }
    .adoption-bank-logo {
        flex-basis: 21px;
        width: 21px;
        height: 21px;
        border-radius: 6px;
    }
    .adoption-bank-logo img {
        width: 16px;
        height: 16px;
    }
    .adoption-bank-logo--wide img {
        width: 18px;
        height: 12px;
    }
}

/* Homepage mobile alignment corrections. */
@media (max-width: 900px) {
    .idx-earth-stage {
        transform: none;
    }
}

@media (max-width: 620px) {
    .idx-founder-image {
        height: clamp(210px, 42vw, 235px);
        min-height: clamp(210px, 42vw, 235px);
    }
    .idx-founder-image img {
        object-position: 50% 30%;
    }
    .idx-final-signup .signup-note {
        display: flex;
        justify-content: center;
        gap: 6px 16px;
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }
}

/* Keep the homepage hero and earth artwork on one uninterrupted black canvas. */
.home-page .idx-clean-hero,
html[data-theme='light'] .home-page .idx-clean-hero,
html[data-theme='dark'] .home-page .idx-clean-hero {
    background-color: #000000 !important;
    background-image: none !important;
}
.home-page .idx-clean-hero .idx-hero-content {
    background: transparent !important;
}
.home-page .idx-earth-stage {
    background-color: #000000;
    margin-top: -118px;
    margin-bottom: -174px;
}

@media (max-width: 900px) {
    .home-page .idx-earth-stage {
        margin-top: -98px;
        margin-bottom: -146px;
    }
}

@media (max-width: 620px) {
    .home-page .idx-earth-stage {
        left: 50%;
        width: 100vw;
        max-width: none;
        margin-top: -44px;
        margin-right: 0;
        margin-bottom: -98px;
        margin-left: -50vw;
    }
    .home-page .idx-earth-stage picture,
    .home-page .idx-earth-image {
        object-position: 50% 54%;
        transform-origin: 50% 50%;
    }
}
