/* ==========================================================================
   Page Module Layout Systems, Bento Parameters & Core Index Logic
   ========================================================================== */

.scroll-viewport {
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Section 1: Rebuilt Brief, Minimalist & Elite Unique Hero Runway Space
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 35%, #111114 0%, var(--bg-color) 65%);
}

.hero-glow-ambient {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 94, 0, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.hero-header-meta {
    margin-bottom: 3rem;
    width: 100%;
}

.tag-badge {
    background: var(--accent-orange-subtle);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: inline-block;
    margin: 0 auto;
}

.hero-banner-title-container {
    width: 100%;
    margin-bottom: 3.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.8rem 0;
}

.hero-refined-banner-text {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(180deg, var(--text-color) 50%, rgba(244, 244, 246, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-minimal-summary-box {
    max-width: 820px;
    margin: 0 auto;
}

.hero-tagline-statement {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hero-paragraph-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* FIX: High-End Infinite Marquee Runway Track Integration Parameters */
.marquee-track-container {
    width: 100%;
    overflow: hidden;
    background-color: #050507;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    position: relative;
}

.hero-highlights-row.infinite-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    background-color: transparent;
    border: none;
    margin-top: 0;
    animation: marqueeTimelineLinear 28s linear infinite;
}

@keyframes marqueeTimelineLinear {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Sister Capsule Interactive Dampening Filters */
.hero-highlights-row:hover .highlight-pill {
    opacity: 0.35;
    filter: blur(1px);
}

.hero-highlights-row .highlight-pill {
    flex: 0 0 auto;
    width: 280px;
    background: var(--bg-color);
    padding: 1.6rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: all 0.5s var(--premium-bezier);
    opacity: 1;
    filter: none;
}

.hero-highlights-row .highlight-pill:hover {
    opacity: 1 !important;
    filter: none !important;
    background: var(--accent-orange-subtle);
    transform: scale(1.04);
}

.highlight-pill span {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: color 0.4s var(--premium-bezier);
}

.hero-highlights-row .highlight-pill:hover span {
    color: var(--accent-color);
}

/* ==========================================================================
   Section 2: About Structural Narrative Content
   ========================================================================== */
.narrative-body p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.narrative-highlight-callout {
    font-size: 1.5rem !important;
    color: var(--text-color) !important;
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    margin-top: 3.5rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Section 3: PREMIUM REDESIGNED ASYMMETRIC BENTO GRID
   ========================================================================== */
.section-header-centered {
    margin-bottom: 5rem;
}

.asymmetric-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    transition: border-color 0.4s var(--premium-bezier), transform 0.4s var(--premium-bezier);
}

.feature-bento-card.wide-card {
    grid-column: span 2;
}

.feature-bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--accent-color);
    transition: width 0.6s var(--premium-bezier);
    z-index: 3;
}

.feature-bento-card:hover::before {
    width: 100%;
}

.watermark-number {
    position: absolute;
    right: -15px;
    bottom: -25px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    transition: var(--transition-smooth);
}

.feature-bento-card:hover .watermark-number {
    color: rgba(255, 94, 0, 0.04);
    transform: scale(1.05) translate(-10px, -10px);
}

.feature-bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    z-index: 2;
}

.feature-bento-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0;
    z-index: 2;
    max-width: 90%;
}

.interactive-glow:hover {
    border-color: var(--border-premium-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.glow-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 94, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.interactive-glow:hover .glow-layer { opacity: 1; }

/* ==========================================================================
   Section 4: Split System Vertical Timeline Module
   ========================================================================== */
.timeline-split-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.timeline-left-sticky-block {
    position: sticky;
    top: 15vh;
    width: 35%;
    height: fit-content;
}

.timeline-subheading-text {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.philosophy-quote-box {
    border: 1px solid var(--border-color);
    padding: 1.8rem;
    background: var(--card-bg);
}

.philosophy-quote-box p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
}

.timeline-right-scroll-block {
    width: 55%;
    position: relative;
    padding-left: 3.5rem;
}

.timeline-track-line-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.timeline-progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent-color), #ff843a);
    box-shadow: 0 0 15px var(--accent-color);
    transition: height 0.1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.timeline-step-card {
    position: relative;
    padding-bottom: 6rem;
}

.timeline-step-card:last-child {
    padding-bottom: 1rem;
}

/* FIX: Premium Dynamic Bloom Coordinate Dot Markers */
.step-marker-dot {
    position: absolute;
    left: -3.5rem;
    top: 0.6rem;
    transform: translateX(-50%) scale(1);
    width: 12px;
    height: 12px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    z-index: 5;
    transition: all 0.5s var(--premium-bezier);
}

.timeline-step-card.timeline-active .step-marker-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateX(-50%) scale(1.35);
    box-shadow: 0 0 15px var(--accent-color), 0 0 5px rgba(255, 94, 0, 0.5);
}

.step-numeric-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.05em;
}

.step-card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.timeline-step-card.timeline-active .step-card-title {
    color: var(--accent-color);
}

.step-card-desc {
    color: var(--text-muted);
}

/* ==========================================================================
   Section 5 & 6: Premium Bento Grid Systems with Fixed Layout Typographies
   ========================================================================== */
.premium-bento-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.bento-box-item {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: border-color 0.5s var(--premium-bezier), transform 0.5s var(--premium-bezier), box-shadow 0.5s var(--premium-bezier);
}

.bento-card-top-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}

.bento-card-bottom-row {
    width: 100%;
    margin-top: auto;
    z-index: 2;
}

.bento-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 94, 0, 0.1) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--premium-bezier);
    z-index: 1;
}

.neon-glow-hover:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.neon-glow-hover:hover .bento-glow-overlay {
    opacity: 1;
}

.bento-box-item.large-card {
    grid-column: span 7;
    height: 420px;
}

.bento-box-item.mid-card {
    grid-column: span 5;
    height: 420px;
}

.bento-box-item.full-width-showcase {
    grid-column: span 12;
}

.status-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    z-index: 2;
}

.status-badge.live {
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.3);
    color: var(--accent-color);
}

.status-badge.waiting {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.bento-item-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

/* FIX: Refined Internal Breathing Room Metrics inside Bento Frameworks */
.bento-item-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.featured-program-tag .label-accent {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.4rem;
}

.featured-program-tag h4 {
    font-size: 1.35rem;
    font-weight: 700;
}

.bento-sub-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Split Showcase Row Sub-system Blocks */
.showcase-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.featured-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.showcase-lead-para {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.showcase-body-para {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

.application-notice-banner {
    background: rgba(255, 255, 255, 0.01);
    border-left: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.application-notice-banner p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.application-notice-banner p strong {
    color: var(--text-color);
}

.inline-btn {
    align-self: flex-start;
}

.abstract-matrix-placeholder {
    border: 1px dashed var(--border-color);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(20,20,23,0.5) 0%, rgba(10,10,12,0.5) 100%);
}

.matrix-glow-dot {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    filter: blur(50px);
    opacity: 0.15;
}

.abstract-matrix-placeholder span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Section 7: Collective Ecosystem Elements
   ========================================================================== */
.collective-lead-text {
    font-size: 1.4rem;
    line-height: 1.65;
    margin-bottom: 2.2rem;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.collective-sub-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.quote-container-block {
    margin-top: 4.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3.5rem;
}

.premium-blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-color);
}

/* ==========================================================================
   Section 8: Knowledge Hub Platform Parameters
   ========================================================================== */
.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 6rem;
}

.section-header-split .section-display-title {
    margin-bottom: 0;
}

.header-side-narrative {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.hub-resource-interactive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hub-card-link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hub-card-link h4 {
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.hub-card-link:hover {
    border-color: var(--border-premium-hover);
    background: rgba(255, 94, 0, 0.01);
}

.hub-card-link:hover h4 {
    color: var(--accent-color);
}

.pill-tag-status {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

/* ==========================================================================
   Section 9: Strategic Corporate Alliance Box Space
   ========================================================================== */
.collaboration-box-frame {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.collab-split-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.collab-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.collab-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.collab-action-right {
    display: flex;
    justify-content: flex-end;
}

/* ==========================================================================
   Section 10: Structural Institutional Directorship Split Row
   ========================================================================== */
.founder-centered-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.founder-image-premium-container {
    position: relative;
    height: 520px;
    border: 1px solid var(--border-color);
    background: #0d0d10;
    overflow: hidden;
}

.founder-glow-orb-backing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
    transition: transform 0.2s ease-out;
}

.hero-img-transparent {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); /* Adds shadow to the silhouette */
}

.image-asset-fallback-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.15);
}

.founder-editorial-biography p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.founder-editorial-biography p:first-of-type {
    color: var(--text-color);
}

.founder-action-row {
    margin-top: 3rem;
}

/* ==========================================================================
   Section 11: Ultimate Architectural Call-to-Action Space
   ========================================================================== */
.final-giant-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

.final-sub-paragraph {
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 840px;
    margin: 0 auto 1.5rem auto;
}

.application-window-status-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 3.5rem;
}

.majestic-btn {
    padding: 1.2rem 3.5rem;
    font-size: 0.95rem;
}


/* ==========================================================================
   Responsive Adaptive Screen Media Display Profiles (ALL ERRORS CORRECTED)
   ========================================================================== */
@media (max-width: 1200px) {
    .premium-bento-grid-wrapper, .asymmetric-feature-grid { grid-template-columns: 1fr; }
    .bento-box-item.large-card, 
    .bento-box-item.mid-card,
    .bento-box-item.full-width-showcase { grid-column: span 12; height: auto; }
    .feature-bento-card, .feature-bento-card.wide-card { grid-column: span 1; }
    .showcase-split-layout { grid-template-columns: 1fr; }
    .footer-primary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .layout-grid, .section-header-split, .founder-centered-layout-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-split-wrapper { flex-direction: column; }
    
    /* Releases Sticky Element to Scroll normally on Mobile Devices */
    .timeline-left-sticky-block { position: relative; top: 0; width: 100%; margin-bottom: 4rem; z-index: 1;}
    .timeline-right-scroll-block { width: 100%; padding-left: 2rem; }
    .step-marker-dot { left: -2rem; }
    
    .founder-image-premium-container { height: 400px; }
    .collab-split-inner { grid-template-columns: 1fr; gap: 2rem; }
    .collab-action-right { justify-content: flex-start; }
    
    /* Makes Knowledge Resources 2-column on Tablets */
    .hub-resource-interactive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Mobile-specific element collapses */
    .hero-actions-wrapper { flex-direction: column; width: 100%; gap: 1rem; }
    .collaboration-box-frame { padding: 3rem 2rem; }
    .bento-box-item { padding: 2.5rem 1.5rem; }
}