/* Ana sayfa — banner altı premium bölümler (body.main-index-page) */

.main-index-page .home-index-charter {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(56, 189, 248, 0.07), transparent 60%),
        var(--bg-primary, #0a0a12);
}

.main-index-page .home-index-charter-inner {
    position: relative;
}

.main-index-page .home-index-charter-head {
    max-width: 46rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.main-index-page .home-index-charter-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.92);
}

.main-index-page .home-index-charter-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.main-index-page .home-index-charter-title {
    margin: 0 0 0.75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #f8fafc;
}

.main-index-page .home-index-charter-title-accent {
    background: linear-gradient(105deg, #e0f2fe 0%, #7dd3fc 42%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.main-index-page .home-index-charter-lead {
    margin: 0;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.65;
    color: rgba(186, 210, 218, 0.94);
    max-width: 42rem;
}

/* Paylaşılan bölüm başlığı (3. resim: kicker + nokta + beyaz/gradient h2 + lead) */
.main-index-page .home-index-section-head {
    text-align: left;
    max-width: 46rem;
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.main-index-page .home-index-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.92);
}

.main-index-page .home-index-section-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.32);
}

.main-index-page .home-index-section-title {
    margin: 0 0 0.75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #f8fafc;
}

.main-index-page .home-index-section-title-accent {
    display: inline-block;
    margin-top: 0.1em;
    background: linear-gradient(105deg, #e0f2fe 0%, #7dd3fc 40%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.main-index-page .home-index-section-lead {
    margin: 0;
    max-width: 44rem;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.65;
    color: rgba(186, 210, 218, 0.94);
}

.main-index-page .home-index-section-lead strong {
    color: #f8fafc;
    font-weight: 700;
}

.main-index-page .home-index-section-lead--journey {
    max-width: 40rem;
    font-style: italic;
    color: rgba(148, 163, 184, 0.95);
}

.main-index-page .home-index-charter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
}

@media (max-width: 900px) {
    .main-index-page .home-index-charter-grid {
        grid-template-columns: 1fr;
    }
}

.main-index-page .home-index-charter-card {
    position: relative;
    padding: clamp(1.15rem, 2.2vw, 1.45rem);
    border-radius: 18px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-left: 3px solid rgba(167, 139, 250, 0.55);
    background: linear-gradient(158deg, rgba(18, 16, 42, 0.5) 0%, rgba(6, 10, 24, 0.52) 100%);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(56, 189, 248, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.main-index-page .home-index-charter-card:nth-child(2) {
    border-left-color: rgba(56, 189, 248, 0.55);
}

.main-index-page .home-index-charter-card:nth-child(3) {
    border-left-color: rgba(251, 191, 36, 0.5);
}

.main-index-page .home-index-charter-card:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, 0.28);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.main-index-page .home-index-charter-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.22) 0%, rgba(236, 72, 153, 0.1) 100%);
    color: #e9d5ff;
    font-size: 1.15rem;
}

.main-index-page .home-index-charter-card:nth-child(2) .home-index-charter-card-icon {
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.24) 0%, rgba(14, 116, 144, 0.12) 100%);
    color: #bae6fd;
}

.main-index-page .home-index-charter-card:nth-child(3) .home-index-charter-card-icon {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.2) 0%, rgba(244, 114, 182, 0.1) 100%);
    color: #fde68a;
}

.main-index-page .home-index-charter-card-title {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f1f5f9;
}

.main-index-page .home-index-charter-card-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.58;
    color: rgba(203, 213, 225, 0.92);
}

/* Journey — ana sayfa premium */
.main-index-page .home-index-journey.journey-section {
    position: relative;
    z-index: 2;
    background:
        radial-gradient(ellipse 75% 45% at 50% 0%, rgba(56, 189, 248, 0.07), transparent 58%),
        var(--bg-primary, #0a0a12);
}

.main-index-page .home-index-journey.journey-section::before,
.main-index-page .home-index-journey.journey-section::after {
    opacity: 0.28;
}

.main-index-page .home-index-journey .journey-content {
    max-width: none;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.main-index-page .home-index-journey .journey-roadmap {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    padding: clamp(1rem, 2vw, 1.35rem) 0;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.14);
    background: rgba(6, 10, 24, 0.35);
    backdrop-filter: blur(16px) saturate(155%);
    -webkit-backdrop-filter: blur(16px) saturate(155%);
}

.main-index-page .home-index-journey .journey-roadmap-stations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 0.5rem;
    padding: 0 clamp(0.75rem, 2vw, 1.25rem);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .main-index-page .home-index-journey .journey-roadmap-stations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .main-index-page .home-index-journey .journey-roadmap-stations {
        grid-template-columns: 1fr;
    }
}

.main-index-page .home-index-journey .journey-roadmap-line {
    display: none;
}

.main-index-page .home-index-journey .journey-roadmap-station[data-layer='3'] .journey-roadmap-station-dot-large {
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.75) 0%,
        rgba(56, 189, 248, 0.5) 45%,
        rgba(14, 116, 144, 0.25) 100%
    );
    box-shadow:
        0 0 16px rgba(56, 189, 248, 0.45),
        0 0 28px rgba(56, 189, 248, 0.2),
        inset 0 0 12px rgba(22, 24, 44, 0.35);
}

.main-index-page .home-index-journey .journey-roadmap-station[data-layer='3']:hover .journey-roadmap-station-dot-large {
    border-color: rgba(224, 242, 254, 0.95);
    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.65),
        0 0 40px rgba(56, 189, 248, 0.35),
        inset 0 0 14px rgba(22, 24, 44, 0.4);
}

.main-index-page .home-index-journey .journey-roadmap-station {
    text-align: center;
    padding: 0.35rem;
}

.main-index-page .home-index-journey .journey-body {
    gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

.main-index-page .home-index-journey .journey-text-block {
    padding: clamp(1.35rem, 2.8vw, 2rem);
    border-radius: 22px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    background: linear-gradient(158deg, rgba(12, 16, 34, 0.52) 0%, rgba(4, 8, 20, 0.48) 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.main-index-page .home-index-journey .journey-text-block::before {
    left: 8%;
    right: 8%;
    width: auto;
    height: 2px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(167, 139, 250, 0.55),
        rgba(56, 189, 248, 0.55),
        transparent
    );
}

.main-index-page .home-index-journey .journey-text-badge {
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.32rem 0.75rem;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(6, 10, 24, 0.45);
    color: rgba(186, 230, 253, 0.9);
}

.main-index-page .home-index-journey .journey-text-badge-secondary {
    border-color: rgba(167, 139, 250, 0.25);
    color: rgba(221, 214, 254, 0.9);
}

.main-index-page .home-index-journey .journey-text-content {
    gap: clamp(0.85rem, 2vw, 1.1rem);
}

.main-index-page .home-index-journey .journey-text-item {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-left: 3px solid rgba(56, 189, 248, 0.45);
    background: rgba(6, 10, 24, 0.35);
    gap: 0.85rem;
}

.main-index-page .home-index-journey .journey-text-item:nth-child(2) {
    border-left-color: rgba(167, 139, 250, 0.45);
}

.main-index-page .home-index-journey .journey-text-item:nth-child(3) {
    border-left-color: rgba(251, 191, 36, 0.42);
}

.main-index-page .home-index-journey .journey-text-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.2) 0%, rgba(129, 140, 248, 0.1) 100%);
}

.main-index-page .home-index-journey .journey-text-icon i {
    color: #bae6fd;
}

.main-index-page .home-index-journey .journey-text-item-title {
    font-size: 1.02rem;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: unset;
    color: #f1f5f9;
}

.main-index-page .home-index-journey .journey-paragraph {
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(203, 213, 225, 0.92);
}

.main-index-page .home-index-journey .journey-divider {
    margin: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.main-index-page .home-index-journey .journey-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.25), transparent);
}

.main-index-page .home-index-journey .journey-divider-icon {
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(8, 12, 28, 0.55);
    backdrop-filter: blur(10px);
    color: rgba(125, 211, 252, 0.9);
}

.main-index-page .home-index-journey .journey-future-block {
    padding: clamp(1.35rem, 2.8vw, 2rem);
    border-radius: 22px;
    border: 1px solid rgba(129, 140, 248, 0.22);
    background: linear-gradient(165deg, rgba(22, 18, 48, 0.48) 0%, rgba(4, 8, 20, 0.5) 100%);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-index-page .home-index-journey .journey-future-block::before {
    left: 8%;
    right: 8%;
    width: auto;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(236, 72, 153, 0.45),
        rgba(167, 139, 250, 0.5),
        transparent
    );
}

.main-index-page .home-index-journey .journey-future-title {
    color: #f8fafc;
    font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.main-index-page .home-index-journey .journey-future-description {
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(203, 213, 225, 0.9);
}

.main-index-page .home-index-journey .journey-future-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (max-width: 520px) {
    .main-index-page .home-index-journey .journey-future-features {
        grid-template-columns: 1fr;
    }
}

.main-index-page .home-index-journey .journey-future-feature {
    border-radius: 10px;
    border: 1px solid rgba(129, 140, 248, 0.14);
    background: rgba(6, 10, 24, 0.4);
    font-size: 0.78rem;
}

.main-index-page .home-index-journey .journey-future-feature i {
    color: rgba(52, 211, 153, 0.85);
}

/* Katman hub — 4 portal kartı */
.main-index-page .home-index-layers.layers-info-section {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
    background: radial-gradient(ellipse 65% 45% at 20% 20%, rgba(56, 189, 248, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 60%, rgba(167, 139, 250, 0.07), transparent 50%),
        var(--bg-primary, #0a0a12);
}

.main-index-page .home-index-layers.layers-info-section::before,
.main-index-page .home-index-layers.layers-info-section::after {
    opacity: 0.25;
}

.main-index-page .home-index-layers .layers-info-content {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

.main-index-page .home-index-layers .home-index-section-head {
    max-width: 48rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.main-index-page .home-index-layer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
}

@media (max-width: 640px) {
    .main-index-page .home-index-layer-grid {
        grid-template-columns: 1fr;
    }
}

.main-index-page .home-index-layer-portal.layer-info-compact {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 0;
    padding: clamp(1.15rem, 2.2vw, 1.45rem);
    border-radius: 18px;
    border: 1px solid rgba(129, 140, 248, 0.18);
    border-left: 3px solid rgba(124, 58, 237, 0.55);
    background: linear-gradient(158deg, rgba(14, 12, 32, 0.55) 0%, rgba(4, 8, 20, 0.5) 100%);
    box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.main-index-page .home-index-layer-portal.layer-info-compact:hover,
.main-index-page .home-index-layer-portal.layer-info-compact:focus-visible {
    transform: translateY(-4px);
    outline: none;
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.main-index-page .home-index-layer-portal.layer-info-compact-1 {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.main-index-page .home-index-layer-portal.layer-info-compact-2 {
    border-left-color: rgba(20, 184, 166, 0.5);
}

.main-index-page .home-index-layer-portal.layer-info-compact-3 {
    border-left-color: rgba(56, 189, 248, 0.55);
}

.main-index-page .home-index-layer-portal .layer-info-compact-header {
    margin-bottom: 0.65rem;
}

.main-index-page .home-index-layer-portal .layer-info-compact-title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.main-index-page .home-index-layer-portal .layer-info-compact-title-icon {
    color: rgba(125, 211, 252, 0.85);
    font-size: 0.9rem;
}

.main-index-page .home-index-layer-portal .layer-info-compact-text {
    font-size: 0.88rem;
    line-height: 1.58;
    color: rgba(203, 213, 225, 0.9);
    margin: 0;
}

.main-index-page .home-index-layer-portal .layer-info-compact-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.main-index-page .home-index-layer-portal .layer-info-compact-badge-3 {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(129, 140, 248, 0.15) 100%);
    color: #bae6fd;
    border: 1px solid rgba(56, 189, 248, 0.28);
}

.main-index-page .home-index-layer-portal .layer-info-compact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #7dd3fc;
}

.main-index-page .home-index-layer-portal:hover .layer-info-compact-cta,
.main-index-page .home-index-layer-portal:focus-visible .layer-info-compact-cta {
    color: #bae6fd;
}

.main-index-page .home-index-layer-portal .layer-info-compact-cta i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.main-index-page .home-index-layer-portal:hover .layer-info-compact-cta i,
.main-index-page .home-index-layer-portal:focus-visible .layer-info-compact-cta i {
    transform: translateX(4px);
}

.main-index-page .home-index-layers .layers-info-main-box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.main-index-page .home-index-layers .layers-info-main-box::before {
    display: none;
}

.main-index-page .home-index-layer-portal.hover-active {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow:
        0 0 0 1px rgba(251, 191, 36, 0.15),
        0 18px 48px rgba(0, 0, 0, 0.38);
}
