/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hex-width: 100px;
    --hex-height: calc(var(--hex-width) * 1.7320508075688772935274463);
    --hex-margin: calc(var(--hex-width) * 0.26);
    --black-primary: #000000;
    --black-secondary: #0a0a0a;
    --black-tertiary: #141414;
    --black-quaternary: #1a1a1a;
    --gray-dark: #1f1f1f;
    --gray-medium: #2a2a2a;
    --gray-light: #3a3a3a;
    --gray-lighter: #4a4a4a;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --accent-white: #e0e0e0;
    --primary-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-light: #808080;
    --border-color: #2a2a2a;
    --border-light: #3a3a3a;
    --success-color: #00ff88;
    --gradient-1: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-2: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 50%, #0a0a0a 100%);
    --gradient-3: linear-gradient(135deg, #141414 0%, #3a3a3a 50%, #141414 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #000000 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.8);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.9);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
    --glow-white: 0 0 20px rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(0, 0, 0, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    min-width: fit-content;
}

.logo i {
    font-size: 1.75rem;
    color: var(--white);
    flex-shrink: 0;
}

.logo .logo-img {
    height: 1em;
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-actions button {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.nav-more-li {
    display: none;
    position: relative;
    list-style: none;
}

.nav-more-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-more-trigger:hover {
    color: var(--white);
    border-color: var(--border-light);
}

.nav-more-caret {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.nav-more-li[data-open="true"] .nav-more-caret {
    transform: rotate(180deg);
}

.nav-more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.35rem;
    min-width: 180px;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1001;
}

.nav-more-li[data-open="true"] .nav-more-dropdown {
    display: block;
}

.nav-more-dropdown .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.nav-more-dropdown .nav-link:hover {
    background: var(--black-tertiary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--black-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-white);
    background: var(--accent-white);
}

.btn-secondary {
    background: var(--gray-dark);
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--gray-medium);
    border-color: var(--border-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl);
    animation: slideUp 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--black-tertiary);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    border: 0;
    background: none;
    padding: 0;
}

.modal-close:hover {
    color: var(--white);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.modal-header p {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.forgot-password {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent-white);
    text-decoration: underline;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--white);
}

.checkbox-label a {
    color: var(--white);
    text-decoration: underline;
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    color: var(--text-light);
    background: var(--black-secondary);
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.75rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.social-btn:hover {
    background: var(--gray-medium);
    border-color: var(--border-light);
}

.form-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background: var(--black-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    background: var(--success-color);
    transition: width 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--black-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-rolling-badges {
    position: relative;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rolling-badge {
    position: absolute;
    padding: 0.75rem 1.5rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.rolling-badge.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.rolling-badge.exiting {
    opacity: 0;
    transform: translateX(-100px);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stakeholder-rotator {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    animation: fadeInUp 1s ease;
}

.rotator-label {
    color: var(--text-secondary);
}

.rotator-label::after {
    content: '\00a0';
}

.typewriter-container {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    justify-content: flex-start;
}

#typewriter-text {
    font-weight: 800;
    /* color set via JS for random per-word colors */
}

.cursor-blink {
    color: var(--white);
    font-weight: 800;
    animation: blink-cursor 1s infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease;
    flex-wrap: wrap;
}

.hero-stats-wrapper {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 10;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    background: var(--black-tertiary);
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    background: var(--black-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--black-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--black-tertiary);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
    background: var(--gray-dark);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-details li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
}

/* 3D Coverflow Carousel */
.features-stacked-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    min-height: 500px;
}

.features-content-panel {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    max-height: 500px;
    overflow-y: auto;
}

.feature-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.feature-content.active {
    display: block;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-content h3 i {
    font-size: 2rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-details li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 700;
}

.features-stacked-slider {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-stacked-slider .nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: var(--black-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 1.2rem;
}

.features-stacked-slider .nav-arrows:hover {
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
    transform: translateY(-50%) scale(1.1);
}

.features-stacked-slider .nav-arrows.prev {
    left: -25px;
}

.features-stacked-slider .nav-arrows.next {
    right: -25px;
}

.feature-card-stacked {
    position: absolute;
    width: 300px;
    min-height: 312px;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.7);
    cursor: pointer;
}

.feature-card-stacked[data-position="left-2"] {
    left: 5%;
    transform: scale(0.75) translateX(-20px);
    z-index: 2;
}

.feature-card-stacked[data-position="left-1"] {
    left: 15%;
    transform: scale(0.85) translateX(-10px);
    z-index: 3;
    opacity: 0.6;
}

.feature-card-stacked[data-position="center"] {
    left: 50%;
    transform: translateX(-50%) scale(1);
    z-index: 10;
    opacity: 1;
    border-color: var(--white);
    box-shadow: var(--shadow-2xl), var(--glow-white);
}

.feature-card-stacked[data-position="right-1"] {
    right: 15%;
    transform: scale(0.85) translateX(10px);
    z-index: 3;
    opacity: 0.6;
}

.feature-card-stacked[data-position="right-2"] {
    right: 5%;
    transform: scale(0.75) translateX(20px);
    z-index: 2;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card-stacked h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-bullets li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-left: 1.25rem;
    position: relative;
}

.feature-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
}

.coverflow-container {
    position: relative;
    margin: 4rem 0;
    perspective: 1500px;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverflow-item {
    position: absolute;
    width: 380px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverflow-item[data-index="0"] {
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(450px);
    opacity: 1;
    z-index: 10;
}

.coverflow-item[data-index="1"] {
    transform: translate(-50%, -50%) rotateY(45deg) translateZ(450px);
    opacity: 0.8;
    z-index: 9;
}

.coverflow-item[data-index="2"] {
    transform: translate(-50%, -50%) rotateY(90deg) translateZ(450px);
    opacity: 0.6;
    z-index: 8;
}

.coverflow-item[data-index="3"] {
    transform: translate(-50%, -50%) rotateY(135deg) translateZ(450px);
    opacity: 0.4;
    z-index: 7;
}

.coverflow-item[data-index="4"] {
    transform: translate(-50%, -50%) rotateY(180deg) translateZ(450px);
    opacity: 0.3;
    z-index: 6;
}

.coverflow-item[data-index="5"] {
    transform: translate(-50%, -50%) rotateY(225deg) translateZ(450px);
    opacity: 0.3;
    z-index: 5;
}

.coverflow-item[data-index="6"] {
    transform: translate(-50%, -50%) rotateY(270deg) translateZ(450px);
    opacity: 0.4;
    z-index: 7;
}

.coverflow-item[data-index="7"] {
    transform: translate(-50%, -50%) rotateY(315deg) translateZ(450px);
    opacity: 0.6;
    z-index: 8;
}

.coverflow-item[data-index="8"] {
    transform: translate(-50%, -50%) rotateY(360deg) translateZ(450px);
    opacity: 0.8;
    z-index: 9;
}

.coverflow-card {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(0deg);
}

.coverflow-card.enlarged {
    transform: scale(1.3) rotateY(0deg);
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -300px;
    box-shadow: var(--shadow-2xl), 0 0 100px rgba(255, 255, 255, 0.3);
}

.coverflow-item[data-index="0"] .coverflow-card {
    border-color: var(--white);
    box-shadow: var(--shadow-2xl), var(--glow-white);
}

.coverflow-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.coverflow-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.coverflow-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.coverflow-card .feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverflow-card .feature-details li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.coverflow-card .feature-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
}

.coverflow-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.coverflow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black-tertiary);
    border: 2px solid var(--border-color);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.coverflow-btn:hover {
    background: var(--gray-medium);
    border-color: var(--white);
    transform: scale(1.1);
}

/* Application Section */
.application-section {
    background: var(--black-secondary);
    padding: 40px 0;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.app-col1-row1 {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.app-col1-row2 {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.app-col2-row1 {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.app-col2-row2 {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.app-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.app-mockup {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mockup-frame {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    flex: 1;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mockup-header {
    background: var(--black-primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #27c93f;
}

.mockup-url {
    flex: 1;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.clickable-url {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.clickable-url:hover {
    color: var(--white);
}

.dashboard-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dashboard-view.active {
    display: block;
}

.mobile-app-showcase {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.mobile-device {
    width: 400px;
    height: 711px; /* Natural mobile aspect ratio 9:16 (400 * 16/9 = 711px) */
    aspect-ratio: 9 / 16;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 12px solid #000;
    border-radius: 3rem;
    padding: 0.5rem;
    box-sizing: border-box;
    box-shadow: 
        0 0 0 2px var(--border-color),
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #000;
    border-radius: 0 0 1.5rem 1.5rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Camera cut-out notch */
.mobile-device::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 10px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 50%, #000 100%);
    border-radius: 0 0 0.6rem 0.6rem;
    z-index: 11;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.9),
        0 0 2px rgba(0, 0, 0, 0.5),
        inset 0 -1px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-top: none;
}

.mobile-screen {
    width: 100%;
    flex: 1;
    min-height: 0;
    background: var(--black-primary);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    background: var(--black-secondary);
    padding: 1rem;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-header i {
    font-size: 1.5rem;
}

.mobile-header .mobile-header-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.mobile-header sup {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 0.05em;
}

.mobile-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-content::-webkit-scrollbar {
    display: none;
}

.mobile-card {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.mobile-card i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.course-list,
.student-list,
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-item,
.student-item,
.setting-item {
    padding: 0.75rem;
    background: var(--black-primary);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.analytics-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-text);
    border-radius: 0.25rem 0.25rem 0 0;
    min-height: 20px;
    animation: chart-grow 1s ease;
}

@keyframes chart-grow {
    from { height: 0; }
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem;
    background: var(--black-primary);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chat-input {
    padding: 0.75rem;
    background: var(--black-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.mockup-content {
    padding: 1.5rem;
    background: var(--black-secondary);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.app-dashboard {
    display: flex;
    gap: 1rem;
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.dashboard-sidebar {
    width: 200px;
    background: var(--black-tertiary);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: var(--gray-medium);
    color: var(--white);
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-widget {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.dashboard-widget h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.insight-item i {
    color: var(--success-color);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    padding: 0.75rem;
    background: var(--black-primary);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.app-features-list,
.app-features-list-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    width: 100%;
    min-width: min(40vw, 100%);
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
    padding: 1.25rem 1.75rem;
    padding-right: 70px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.app-features-list h3,
.app-features-list-right h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.app-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
}

.app-feature-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.app-feature-item > div {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.app-feature-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.app-feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stakeholder Actions Section - Honeycomb Design */
.stakeholder-actions {
    background: var(--black-primary);
    padding: 5rem 0;
}

/* Shimmer Effect Variables */
:root {
    --glow-hue: 142deg;
    --glow-color-white: hsl(0 0% 100%);
    --shadow-hue: 180deg;
    --spring-easing: linear(
        0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
        1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
        1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
        0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
        0.998 84%, 1
    );
    --spring-duration: 1.33s;
}

@property --shimmer {
    syntax: "<angle>";
    inherits: false;
    initial-value: 33deg;
}

@keyframes shimmer {
    0% {
        --shimmer: 0deg;
    }
    100% {
        --shimmer: 360deg;
    }
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.stakeholder-honeycomb-container {
    background: radial-gradient(circle at center, #2a2a2a 0%, #000 70%);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}


/* Hexagon Honeycomb Styles – your original large-screen layout */
.hex-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.ibws-fix {
    font-size: 0;
}

.hexy {
    position: relative;
    margin: 1px 26px;
    background-color: #000000;
    height: 173.20508075688772935274463px;
    width: 100px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 18px rgba(74, 74, 74, 0.25),
        0 0 40px rgba(46, 46, 46, 0.2),
        0 0 70px rgba(23, 23, 23, 0.15);
    isolation: isolate;
    filter: drop-shadow(0 0 0 transparent);
    z-index: 1;
}

.hexy,
.hexy::before,
.hexy::after {
    height: 173.20508075688772935274463px;
    width: 100px;
}

.hexy:hover,
.hexy.active {
    background-color: #000000;
    z-index: 105;
}
.hexy.active {
    filter: drop-shadow(0 0 2px hsl(var(--glow-hue) 100% 70%))
            drop-shadow(0 0 4px hsl(var(--glow-hue) 100% 70%))
            drop-shadow(0 0 6px hsl(var(--glow-hue) 100% 70%));
}

.hexy::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: inherit;
    transform: rotate(60deg);
    overflow: hidden;
    z-index: 1;
}

.hexy::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: inherit;
    transform: rotate(-60deg);
    z-index: 1;
}

/* Stagger odd hexy-wrap in each row; row 4 fix: 2nd item (Faculties) no offset */
.ibws-fix > .hexy-wrap:nth-child(odd) {
    position: relative;
    top: 88px;
}
.ibws-fix:last-child > .hexy-wrap:nth-child(2) {
    top: 0;
}

.hexynone {
    position: relative;
    display: inline-block;
    height: 173.20508075688772935274463px;
    width: 100px;
    margin: 5px 30px;
}
.hexynone:nth-child(odd) {
    top: 88px;
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    font-size: 0.9rem;
    text-align: center;
    z-index: 100;
    color: #ffffff;
    font-weight: 600;
}

.hexy:hover .hex-content,
.hexy.active .hex-content {
    color: #fff;
}

.hexy-wrap {
    position: relative;
    display: inline-block;
    font-size: 0;
    vertical-align: top;
    margin: 5px 30px;
    box-sizing: border-box;
}

.hexy-wrap .hexy {
    position: relative;
    margin: 0;
}

/* Shimmer – your original */
.hexy-wrap .shimmer {
    --inset: 2px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0;
}

.hexy-wrap .shimmer,
.hexy-wrap .shimmer::before,
.hexy-wrap .shimmer::after {
    height: 210px;
    width: 180px;
    position: absolute;
    top: -20px;
    left: -40px;
}

.hexy-wrap .shimmer {
    background: hsl(var(--glow-hue) 100% 70%);
    mix-blend-mode: normal;
    animation: shimmer 1s linear infinite both;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform: rotate(90deg);
    z-index: 0;
    mask-image: conic-gradient(
        from var(--shimmer, 0deg) at 50% 50%,
        transparent 0%, transparent 20%, black 36%, black 45%,
        transparent 50%, transparent 70%, black 85%, black 95%, transparent 100%
    );
    mask-size: cover;
    -webkit-mask-image: conic-gradient(
        from var(--shimmer, 0deg) at 50% 50%,
        transparent 0%, transparent 20%, black 36%, black 45%,
        transparent 50%, transparent 70%, black 85%, black 95%, transparent 100%
    );
    -webkit-mask-size: cover;
}

.hexy-wrap .shimmer::before {
    content: "";
    background-color: inherit;
    transform: rotate(60deg);
    transform-origin: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexy-wrap .shimmer::after {
    content: "";
    background-color: inherit;
    transform: rotate(-60deg);
    transform-origin: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexy-wrap:hover .shimmer,
.hexy-wrap .hexy.active ~ .shimmer,
.hexy-wrap:has(.hexy.active) .shimmer {
    opacity: 1;
}

.hexy-wrap:hover .shimmer::before,
.hexy-wrap:has(.hexy.active) .shimmer::before {
    transition: all 0.5s ease;
    opacity: 1;
    box-shadow:
        0 0 calc(var(--inset) * 0.1) 2px hsl(var(--glow-hue) 20% 95%),
        0 0 calc(var(--inset) * 0.18) 4px hsl(var(--glow-hue) 20% 80%),
        0 0 calc(var(--inset) * 0.33) 4px hsl(var(--glow-hue) 50% 70%),
        0 0 calc(var(--inset) * 0.66) 5px hsl(var(--glow-hue) 100% 70%);
    animation: shine 1.2s ease-in 1 forwards;
}

.hexy-wrap:hover .shimmer::after,
.hexy-wrap:has(.hexy.active) .shimmer::after {
    transition: all 0.5s ease;
    opacity: 1;
    box-shadow:
        inset 0 0 0 1px hsl(var(--glow-hue) 70% 95%),
        inset 0 0 2px 1px hsl(var(--glow-hue) 100% 80%),
        inset 0 0 5px 2px hsl(var(--glow-hue) 100% 70%);
    animation: shine 1.2s ease-in 1 forwards;
}

.hexyinner {
    position: absolute;
    width: 155px;
    height: 175px;
    top: -1px;
    left: -27px;
    display: inline-block;
    pointer-events: none;
    z-index: 2;
    transform: rotate(90deg) translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border-radius: 0;
}

.hexyinner::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #000;
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
}

.hexyinner::after {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: rgba(21, 21, 21, 0.85);
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
}

/* Inline Expansion Styles */
.stakeholder-expansion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    margin-top: 5rem;
    margin-bottom: 2rem;
    opacity: 0;
    width: 100%;
    position: relative;
    scroll-margin-top: 100px; /* For smooth scroll positioning */
}

.stakeholder-expansion.active {
    max-height: 3000px;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 1;
    overflow: visible;
}

.stakeholder-expansion-content {
    background: #1a1a1a;
    border: 1px solid #888;
    border-radius: 1rem;
    padding: 2.5rem;
    color: var(--white);
    animation: fadeIn 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    min-height: 200px;
}

.stakeholder-expansion-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #27c93f;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stakeholder-expansion-content h3 i {
    font-size: 2rem;
}

.stakeholder-expansion-content .ai-benefits {
    margin-top: 1rem;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
}

.stakeholder-expansion-content .ai-benefits .benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stakeholder-expansion-content .ai-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(39, 201, 63, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 201, 63, 0.1);
}

.stakeholder-expansion-content .ai-benefits .benefit-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stakeholder-expansion-content .ai-benefits .benefit-item h4 i {
    color: #27c93f;
    font-size: 1.25rem;
}

.stakeholder-expansion-content .ai-benefits .benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Ensure expansion content ai-benefits overrides general rules */
.stakeholder-expansion-content .ai-benefits {
    display: grid !important;
    visibility: visible !important;
}

/* Responsive styles for benefit items */
@media (max-width: 768px) {
    .stakeholder-expansion-content .ai-benefits {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stakeholder-expansion-content .ai-benefits .benefit-item {
        padding: 1.25rem;
    }
    
    .stakeholder-expansion-content .ai-benefits .benefit-item h4 {
        font-size: 1.05rem;
    }
}

/* Responsive hexagon honeycomb – small screens only */
@media (max-width: 768px) {
    .stakeholder-actions {
        padding: 2rem 0;
    }
    .hex-container { width: 95%; }
    .stakeholder-honeycomb-container { padding: 2rem 1rem; }
    .hexy {
        width: 78px;
        height: 135.1000487285676261205839752px;
        margin: 1px 18px;
    }
    .hexy,
    .hexy::before,
    .hexy::after {
        width: 78px;
        height: 135.1000487285676261205839752px;
    }
    .hexy-wrap {
        margin: 4px 30px 5px 20px;
    }
    .ibws-fix > .hexy-wrap:nth-child(odd) {
        top: 70px;
    }
    .ibws-fix:last-child > .hexy-wrap:nth-child(2) {
        top: 0;
    }
    .hexynone {
        width: 78px;
        height: 135.1000487285676261205839752px;
        margin: 5px 18px 6px 18px;
    }
    .hexynone:nth-child(odd) {
        top: 68px;
    }
    .hex-content {
        width: 92px;
        font-size: 0.72rem;
        line-height: 1.15;
    }
    .hexy-wrap .shimmer,
    .hexy-wrap .shimmer::before,
    .hexy-wrap .shimmer::after {
        height: 164px;
        width: 140px;
        top: -15px;
        left: -31px;
    }
    .hexyinner {
        width: 120px;
        height: 136px;
        left: -21px;
    }
}

/* Medium screen only – 769px–1024px: same honeycomb as large, 4 hexes per row */
@media (min-width: 769px) and (max-width: 1024px) {
    .stakeholder-honeycomb-container { padding: 2.5rem 1.5rem; }
    .hex-container { width: 98%; max-width: 1200px; }
    .ibws-fix > .hexy-wrap:nth-child(n+5) {
        display: none !important;
    }
}

/* Workflow Section */
.workflow-section {
    background: var(--black-secondary);
    padding: 5rem 0;
}

.workflow-modern-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

.workflow-visual-modern {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 10px;
    position: sticky;
    top: 100px;
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.workflow-canvas {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    overflow: visible;
    border-radius: 1rem;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    padding: 5px;
    box-sizing: border-box;
}

.workflow-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

/* Animated background particles */
.workflow-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.workflow-path,
.workflow-path-branch {
    z-index: 5;
    position: relative;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.workflow-path {
    stroke-dasharray: 5,5;
    animation: pathDash 8s linear infinite;
}

.workflow-path-branch {
    stroke-dasharray: 3,3;
    animation: pathDash 6s linear infinite;
}

@keyframes pathDash {
    to {
        stroke-dashoffset: -20;
    }
}

.workflow-node-modern {
    position: absolute;
    background: var(--black-secondary);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.workflow-node-modern:hover {
    transform: scale(1.1);
    border-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.node-start { 
    top: 15%; 
    left: 8%; 
    border-color: var(--success-color);
    animation: floatNode1 6s ease-in-out infinite;
}
.node-process { 
    top: 12%; 
    left: 42%; 
    border-color: #6366f1;
    animation: floatNode2 7s ease-in-out infinite;
}
.node-decision { 
    top: 45%; 
    left: 42%; 
    border-color: #ffbd2e;
    animation: floatNode3 8s ease-in-out infinite;
}
.node-action { 
    top: 65%; 
    left: 68%; 
    border-color: #8b5cf6;
    animation: floatNode4 6.5s ease-in-out infinite;
}
.node-notify { 
    top: 25%; 
    left: 68%; 
    border-color: #ec4899;
    animation: floatNode5 7.5s ease-in-out infinite;
}
.node-complete { 
    top: 45%; 
    left: 82%; 
    border-color: var(--success-color);
    animation: floatNode6 6s ease-in-out infinite;
}

/* Additional floating nodes */
.node-analyze {
    top: 35%;
    left: 25%;
    border-color: #10b981;
    animation: floatNode7 7s ease-in-out infinite;
}

.node-optimize {
    top: 60%;
    left: 25%;
    border-color: #f59e0b;
    animation: floatNode8 8.5s ease-in-out infinite;
}

.node-sync {
    top: 55%;
    left: 8%;
    border-color: #3b82f6;
    animation: floatNode9 6.5s ease-in-out infinite;
}

.node-start.workflow-active { box-shadow: 0 0 20px var(--success-color), 0 0 40px var(--success-color); }
.node-process.workflow-active { box-shadow: 0 0 20px #6366f1, 0 0 40px #6366f1; }
.node-decision.workflow-active { box-shadow: 0 0 20px #ffbd2e, 0 0 40px #ffbd2e; }
.node-action.workflow-active { box-shadow: 0 0 20px #8b5cf6, 0 0 40px #8b5cf6; }
.node-notify.workflow-active { box-shadow: 0 0 20px #ec4899, 0 0 40px #ec4899; }
.node-complete.workflow-active { box-shadow: 0 0 20px var(--success-color), 0 0 40px var(--success-color); }
.node-analyze.workflow-active { box-shadow: 0 0 20px #10b981, 0 0 40px #10b981; }
.node-optimize.workflow-active { box-shadow: 0 0 20px #f59e0b, 0 0 40px #f59e0b; }
.node-sync.workflow-active { box-shadow: 0 0 20px #3b82f6, 0 0 40px #3b82f6; }

@keyframes floatNode1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(2deg); }
    50% { transform: translate(-5px, -10px) rotate(-1deg); }
    75% { transform: translate(-10px, 5px) rotate(1deg); }
}

@keyframes floatNode2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-12px, 12px) rotate(-2deg); }
    66% { transform: translate(8px, -8px) rotate(1deg); }
}

@keyframes floatNode3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, 12px) rotate(1deg); }
    50% { transform: translate(-10px, 8px) rotate(-1deg); }
    75% { transform: translate(5px, -10px) rotate(2deg); }
}

@keyframes floatNode4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(-8px, -12px) rotate(-1deg); }
    60% { transform: translate(12px, 8px) rotate(2deg); }
}

@keyframes floatNode5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40% { transform: translate(10px, 10px) rotate(1deg); }
    80% { transform: translate(-8px, -12px) rotate(-1deg); }
}

@keyframes floatNode6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, 8px) rotate(-2deg); }
    50% { transform: translate(8px, -8px) rotate(1deg); }
    75% { transform: translate(5px, 12px) rotate(-1deg); }
}

@keyframes floatNode7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    35% { transform: translate(12px, -10px) rotate(1deg); }
    70% { transform: translate(-8px, 10px) rotate(-1deg); }
}

@keyframes floatNode8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    30% { transform: translate(-10px, -8px) rotate(-1deg); }
    60% { transform: translate(10px, 12px) rotate(2deg); }
}

@keyframes floatNode9 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40% { transform: translate(8px, -12px) rotate(1deg); }
    80% { transform: translate(-10px, 8px) rotate(-1deg); }
}

.node-modern-icon {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.node-modern-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.workflow-info-modern {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.workflow-info-content {
    position: relative;
    min-height: 400px;
}

.workflow-info-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.workflow-info-panel.active {
    display: block;
}

.workflow-info-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.workflow-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: calc(0.25rem - 1px);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--black-tertiary);
    border-radius: 50%;
    position: absolute;
    left: -2.25rem;
    top: 0.25rem;
    z-index: 2;
}

.timeline-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.workflow-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.flow-node {
    background: var(--black-secondary);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-node:hover {
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.start-node { border-color: var(--success-color); }
.process-node { border-color: #6366f1; }
.decision-node { border-color: #ffbd2e; }
.action-node { border-color: #8b5cf6; }
.notify-node { border-color: #ec4899; }
.end-node { border-color: var(--success-color); }

.flow-icon {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.flow-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.flow-line {
    width: 3px;
    height: 30px;
    background: var(--border-color);
    margin: 0 auto;
    position: relative;
}

.flow-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--border-color);
}

.flow-line-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.workflow-content {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.workflow-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.workflow-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.workflow-tab {
    padding: 0.75rem 1.5rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.workflow-tab:hover,
.workflow-tab.active {
    background: var(--gray-medium);
    border-color: var(--white);
    color: var(--white);
}

.workflow-details {
    position: relative;
    min-height: 300px;
}

.workflow-detail {
    display: none;
}

.workflow-detail.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.workflow-detail h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.workflow-steps-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-compact {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--black-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    flex: 1;
}

.step-arrow {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.workflow-node {
    background: var(--black-secondary);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-node:hover {
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.workflow-node.start {
    border-color: var(--success-color);
}

.workflow-node.process {
    border-color: var(--primary-color);
}

.workflow-node.decision {
    border-color: #ffbd2e;
}

.workflow-node.action {
    border-color: #6366f1;
}

.workflow-node.end {
    border-color: var(--success-color);
}

.node-icon {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.node-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.node-detail {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.workflow-connector {
    width: 3px;
    height: 40px;
    background: var(--border-color);
    margin: 0 auto;
}

.workflow-connector-branch {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.branch-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.workflow-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.workflow-example-card {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.workflow-example-card h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.example-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.example-step {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
}

.example-arrow {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

/* Fixed Ecosystem Section */
.ecosystem-diagram-fixed {
    position: relative;
    min-height: 600px;
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecosystem-center-fixed {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.center-logo-fixed {
    width: 180px;
    height: 180px;
    background: var(--gradient-black);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-2xl);
    animation: pulse 3s infinite;
}

.center-logo-fixed i {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.ecosystem-nodes-fixed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.ecosystem-node-fixed {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.ecosystem-node-fixed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
    background: var(--black-tertiary);
}

.node-icon-fixed {
    width: 60px;
    height: 60px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.ecosystem-node-fixed h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.ecosystem-node-fixed p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* AI Exchange Section */
.ai-exchange {
    background: var(--black-primary);
}

.exchange-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.exchange-features {
    margin-top: 2rem;
}

.exchange-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0 !important;
    transform: translateY(30px) !important;
    visibility: hidden;
}

.exchange-feature.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible;
}

.exchange-feature:hover {
    background: var(--black-tertiary);
    border-color: var(--border-light);
    transform: translateX(10px);
}

.exchange-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.exchange-feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.exchange-feature-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.exchange-feature-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.exchange-feature-content ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.exchange-feature-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.exchange-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.visual-card {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.visual-header {
    background: var(--black-tertiary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.visual-dots {
    display: flex;
    gap: 0.5rem;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
}

.visual-dots span:nth-child(1) {
    background: #ff5f56;
}

.visual-dots span:nth-child(2) {
    background: #ffbd2e;
}

.visual-dots span:nth-child(3) {
    background: #27c93f;
}

.visual-title {
    font-weight: 600;
    color: var(--white);
}

.visual-content {
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ai-future-section {
    flex: 1;
    min-height: 200px;
    width: 100%;
}

.ai-future-card {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    max-width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.ai-future-card .visual-header {
    border-bottom: 1px solid var(--border-color);
}

.ai-future-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    padding: 2rem;
    flex: 1;
    align-content: flex-start;
}

.ai-future-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    min-width: 0;
    transition: all 0.3s ease;
}

.ai-future-item:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ai-future-item i {
    font-size: 1.75rem;
    color: var(--success-color);
}

.ai-future-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .ai-future-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    .ai-future-item {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .ai-future-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    .ai-future-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .ai-future-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        padding: 1rem;
        gap: 0.5rem;
    }
    .ai-future-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 1rem;
        padding: 0.875rem 1rem;
        min-width: 0;
    }
    .ai-future-item i {
        flex-shrink: 0;
        font-size: 1.5rem;
    }
    .ai-future-item span {
        text-align: left;
    }
}

.profile-section {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 20px;
    margin-bottom: 2rem;
    align-items: start;
}

.profile-avatar {
    grid-column: 1;
    grid-row: 1;
    width: 80px;
    height: 80px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.profile-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: center;
    text-align: left;
}

.profile-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.student-name-line {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.progress-bars {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0;
}

.progress-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 0.75rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.progress-item span:first-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    grid-column: 1;
}

.progress-bar {
    grid-column: 1 / -1;
    height: 8px;
    background: var(--black-tertiary);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-text);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0%;
}

.progress-item span:last-child,
.progress-percent {
    text-align: right;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    grid-column: 2;
    grid-row: 1;
}

.profile-avatar {
    position: relative;
    cursor: pointer;
}

.student-switch-indicator {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-avatar:hover .student-switch-indicator {
    opacity: 1;
}

.ai-insights,
.ai-predictions {
    background: var(--black-tertiary);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--white);
    margin-bottom: 1rem;
}

.ai-insights h5,
.ai-predictions h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.ai-insights ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-insights li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.ai-insights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.ai-predictions p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.ai-predictions strong {
    color: var(--white);
}

/* Stakeholders Section */
.stakeholders {
    background: var(--black-secondary);
}

.stakeholders-floating-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    min-height: 80vh;
    position: relative;
    padding: 2rem 0;
}

.stakeholders-timeline {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}

.stakeholders-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
    transform: translateX(-50%);
}

.stakeholder-timeline-item {
    position: relative;
    width: 45%;
    padding: 2rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    margin-bottom: 3rem;
    opacity: 0.3;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s ease;
}

.stakeholder-timeline-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
}

.stakeholder-timeline-item:nth-child(odd) {
    margin-left: 0;
}

.stakeholder-timeline-item:nth-child(even) {
    margin-left: auto;
}

.stakeholder-timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid var(--black-secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.stakeholder-timeline-item:nth-child(odd)::before {
    right: -35px;
}

.stakeholder-timeline-item:nth-child(even)::before {
    left: -35px;
}

.stakeholders-floating-area {
    position: relative;
    min-height: 600px;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    display: none;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--black-secondary);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatInSpace 20s infinite linear;
    z-index: 5;
}

.floating-card:hover {
    transform: scale(1.2);
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
    z-index: 10;
}

.floating-card.active {
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
    transform: scale(1.15);
    z-index: 15;
}

.floating-card[data-stakeholder="students"] {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card[data-stakeholder="teachers"] {
    top: 25%;
    left: 25%;
    animation-delay: 2s;
}

.floating-card[data-stakeholder="parents"] {
    top: 45%;
    left: 10%;
    animation-delay: 4s;
}

.floating-card[data-stakeholder="administrators"] {
    top: 65%;
    left: 30%;
    animation-delay: 6s;
}

.floating-card[data-stakeholder="counselors"] {
    top: 15%;
    left: 50%;
    animation-delay: 8s;
}

.floating-card[data-stakeholder="researchers"] {
    top: 40%;
    left: 55%;
    animation-delay: 10s;
}

.floating-card[data-stakeholder="government"] {
    top: 60%;
    left: 50%;
    animation-delay: 12s;
}

.floating-card[data-stakeholder="content-creators"] {
    top: 30%;
    left: 75%;
    animation-delay: 14s;
}

.floating-card[data-stakeholder="librarians"] {
    top: 55%;
    left: 75%;
    animation-delay: 16s;
}

@keyframes floatInSpace {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(25px, 10px) rotate(3deg);
    }
}

.floating-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.floating-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.stakeholder-content-panel {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    max-height: 600px;
    overflow-y: auto;
}

.stakeholder-content-panel::-webkit-scrollbar {
    width: 6px;
}

.stakeholder-content-panel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.stakeholder-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.stakeholder-content.active {
    display: block;
}

.stakeholder-content-panel {
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    max-height: 600px;
    overflow-y: auto;
}

.stakeholder-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stakeholder-content h3 i {
    font-size: 2.5rem;
}

.stakeholder-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.stakeholder-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: margin-bottom 0.3s ease;
}

.stakeholder-card.expanded h3 {
    margin-bottom: 1rem;
}

/* General ai-benefits - only for old stakeholder cards, not expansion content */
.stakeholder-card .ai-benefits:not(.stakeholder-expansion-content .ai-benefits) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.stakeholder-card.expanded .ai-benefits {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1.5rem;
}

.ai-benefits h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.ai-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ai-benefits i {
    color: var(--success-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ai-benefits strong {
    color: var(--white);
}

/* Administration Section */
.administration {
    background: var(--black-primary);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.admin-card {
    background: var(--black-secondary);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.admin-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
    background: var(--black-tertiary);
}

.admin-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.admin-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.admin-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.admin-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.admin-features i {
    color: var(--success-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.admin-features strong {
    color: var(--white);
}

/* Integrations Section */
.integrations {
    background: var(--black-secondary);
}

.integrations-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.integrations-cloud-container {
    position: relative;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    margin: 3rem 0;
    padding: 2rem;
    background: radial-gradient(square at top, #2a2a2a 0%, #000 70%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagcloud-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.integrations-cloud-container .tag {
    --tag-hue: 220;
    background: linear-gradient(135deg, hsla(var(--tag-hue), 60%, 50%, 0.2) 0%, var(--black-secondary) 100%);
    border: 2px solid hsl(var(--tag-hue), 60%, 50%);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.integrations-cloud-container .tag:hover {
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, var(--black-tertiary) 0%, var(--black-secondary) 100%);
}

.briselle-logo-center {
    position: absolute;
    background: #000000;
    border: none;
    border-radius: 50%;
    width: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(100, 100, 100, 0.5), 0 0 60px rgba(50, 50, 50, 0.3);
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

.briselle-logo-center::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 480px;
    height: 480px;
    margin-left: -240px;
    margin-top: -240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.briselle-logo-center i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.briselle-logo-center .briselle-logo-img {
    width: 150px;
    height: auto;
    max-width: 140px;
    max-height: 100px;
    object-fit: contain;
}

.briselle-logo-center sup {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 0.05em;
}

.integration-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--gradient-black);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: hub-rotate 10s linear infinite;
    cursor: pointer;
}

.hub-center:hover {
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
}

.hub-center i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: hub-icon-pulse 2s infinite;
}

@keyframes hub-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hub-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hub-connections {
    position: relative;
    width: 100%;
    height: 100%;
}

.connection-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: var(--black-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    transform-origin: 250px 0;
    animation: rotate 20s linear infinite;
    cursor: pointer;
    z-index: 5;
}

.connection-item:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    border-color: var(--white);
    box-shadow: var(--shadow-xl), var(--glow-white);
    background: var(--gray-dark);
    z-index: 15;
}

.connection-item i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.connection-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(250px) rotate(-360deg);
    }
}

.integration-features {
    margin-top: 2rem;
}

.integration-feature {
    padding: 2rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.integration-feature:hover {
    background: var(--gray-dark);
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.integration-feature i {
    width: 60px;
    height: 60px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.integration-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.integration-feature p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.integration-feature ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.integration-feature ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.integration-feature ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
}

/* Ecosystem Section */
.ecosystem {
    background: var(--black-primary);
}

.ecosystem-diagram {
    position: relative;
    min-height: 700px;
    margin: 4rem 0;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-logo {
    width: 200px;
    height: 200px;
    background: var(--gradient-black);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-2xl);
    animation: pulse 3s infinite;
}

.center-logo i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.center-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-2xl);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-2xl), var(--glow-white);
    }
}

.ecosystem-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.ecosystem-node {
    position: absolute;
    width: 180px;
    padding: 1.5rem;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.ecosystem-node:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl), var(--glow-white);
    border-color: var(--white);
    z-index: 10;
    background: var(--black-tertiary);
}

.node-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-black);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.ecosystem-node h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.ecosystem-node p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.node-stats {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.node-students {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-teachers {
    top: 15%;
    right: 5%;
}

.node-parents {
    top: 15%;
    left: 5%;
}

.node-schools {
    bottom: 25%;
    left: 5%;
}

.node-colleges {
    bottom: 25%;
    right: 5%;
}

.node-government {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-counselors {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-researchers {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.ecosystem-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--black-secondary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
    background: var(--black-tertiary);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-black);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--black-primary);
}

.cta-section .btn-primary:hover {
    background: var(--accent-white);
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--black-primary);
}

/* Footer */
.footer {
    background: var(--black-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo i {
    font-size: 1.75rem;
}

.footer-logo .footer-logo-img {
    height: 1em;
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.footer-logo sup {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 0.05em;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--black-primary);
    transform: translateY(-3px);
    border-color: var(--white);
}

.social-links a.social-x .x-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: var(--white);
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--white);
}

.footer-contact-section {
    position: relative;
    overflow: visible;
    background: transparent !important;
}

.footer-contact-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-section .footer-phone {
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .footer .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer-content {
        grid-template-columns: 1.25fr 1fr 1fr 1fr 1.5fr;
    }
    
    /* Tag cloud: oval galaxy, use horizontal space */
    .integrations-cloud-container {
        min-height: 560px;
    }
    .tagcloud-container {
        transform: scaleX(1.4);
        transform-origin: center center;
    }
    
    /* Exchange: align first feature top = visual-card top, last feature bottom = ai-future-content bottom */
    .exchange-content {
        align-items: stretch;
    }
    .exchange-text {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .exchange-features {
        margin-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .exchange-feature:last-child {
        margin-bottom: 0;
    }
    .exchange-visual {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .ai-future-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .ai-future-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .ai-future-content {
        flex: 1;
    }
}

/* Page Content Styles */
.page-content {
    background: var(--black-primary);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
    line-height: 1.8;
}

.page-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.page-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.page-body li {
    margin-bottom: 0.5rem;
}

.page-body article {
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.page-body article h2 {
    margin-top: 0;
}

.page-body textarea {
    padding: 0.75rem 1rem;
    background: var(--black-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    resize: vertical;
}

.page-body textarea:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stakeholder-rotator {
        font-size: 1.5rem;
    }
    
    .exchange-content,
    .integrations-content {
        grid-template-columns: 1fr;
    }
    .ecosystem-benefits {
        gap: 1.5rem;
    }
    .benefit-card {
        padding: 1.25rem;
    }
    .benefit-card i {
        font-size: 1.75rem;
    }
    .benefit-card h4 {
        font-size: 1rem;
    }
    .benefit-card p {
        font-size: 0.8rem;
    }
    .app-col2-row1 {
        padding-right: 0;
    }
    .app-features-list,
    .app-features-list-right {
        min-width: 0;
        width: 100%;
    }
    .app-col2-row2 {
        padding-right: 1.5rem;
    }
    .mobile-app-showcase {
        justify-content: center;
        padding: 0 1.5rem;
    }
    
    .exchange-visual {
        position: static !important;
        margin-top: 2rem;
    }
    .ai-predictions {
        margin-top: 2rem;
    }
    
    .exchange-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .integration-hub {
        width: 100%;
        max-width: 400px;
        height: 400px;
        box-sizing: border-box;
    }
    
    .connection-item {
        transform-origin: 200px 0;
    }
    
    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg);
        }
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr;
    }

    /* Features: use available height on medium, remove scrollbar */
    .features-stacked-container {
        min-height: min(700px, 75vh);
    }
    .features-content-panel {
        max-height: none;
        overflow-y: visible;
    }
    .features-stacked-slider {
        min-height: min(700px, 75vh);
    }
}

/* Medium only (769–1024): overflow items in More dropdown, no overlay */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-item-overflow {
        display: none !important;
    }
    .nav-more-li {
        display: flex;
        align-items: center;
    }
    .nav-menu {
        gap: 0.75rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: visible;
    }
    .nav-wrapper {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-more-li {
        display: none !important;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: min(300px, 82vw);
        height: calc(100vh - 70px);
        padding: 1.5rem 0 2rem;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        box-shadow: 12px 0 48px rgba(0, 0, 0, 0.6);
    }
    
    .nav-menu li {
        width: 100%;
        list-style: none;
    }
    .nav-menu li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.75);
        transition: color 0.2s ease, background 0.2s ease;
        position: relative;
    }
    .nav-menu .nav-link::after {
        display: block;
        content: '';
        position: absolute;
        left: 1.5rem;
        right: 1.5rem;
        bottom: 0.75rem;
        height: 2px;
        background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.6));
        border-radius: 1px;
        width: 0;
        transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-menu .nav-link:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.04);
    }
    .nav-menu .nav-link:hover::after {
        width: calc(100% - 3rem);
    }
    .nav-menu .nav-link.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu .nav-link.active::after {
        width: calc(100% - 3rem);
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stakeholder-rotator {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .typewriter-container {
        min-width: auto;
        justify-content: center;
    }
    
    .ecosystem-nodes-fixed {
        grid-template-columns: 1fr;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-nodes-fixed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ecosystem-diagram-fixed {
        min-height: auto;
    }
    
    .app-showcase {
        grid-template-columns: 1fr;
    }
    
    .workflow-diagram {
        padding: 1rem;
    }
    
    .workflow-connector-branch {
        flex-direction: column;
    }
    
    .workflow-examples {
        grid-template-columns: 1fr;
    }
    
    .integration-hub {
        width: 100%;
        max-width: 300px;
        height: 300px;
        box-sizing: border-box;
    }
    
    .connection-item {
        transform-origin: 150px 0;
        width: 100px;
        height: 100px;
    }
    
    .connection-item i {
        font-size: 1.5rem;
    }
    
    .connection-item span {
        font-size: 0.75rem;
    }
    
    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
        }
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .features {
        padding: 2.5rem 0;
    }
    .features-stacked-container {
        grid-template-columns: 1fr;
        min-height: min(800px, 80vh);
    }
    .features-content-panel {
        max-height: none;
        overflow-y: visible;
    }
    .features-stacked-slider {
        min-height: min(800px, 80vh);
    }

    .features-stacked-slider .nav-arrows.prev {
        left: 8px;
        right: auto;
    }
    .features-stacked-slider .nav-arrows.next {
        left: auto;
        right: 8px;
    }
    
    .stakeholder-timeline-item {
        width: 90%;
        margin-left: 10% !important;
    }
    
    .stakeholders-timeline::before {
        left: 10%;
    }
    
    .stakeholder-timeline-item::before {
        left: -35px !important;
        right: auto !important;
    }
    
    .integrations-content {
        grid-template-columns: 1fr !important;
    }
    
    .ecosystem-benefits {
        grid-template-columns: 1fr !important;
    }
    .benefit-card {
        padding: 1.5rem;
    }
    .benefit-card i {
        font-size: 2rem;
    }
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    /* Application Section */
    .application-section {
        overflow-x: hidden;
    }
    .application-section .container {
        width: 100%;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .app-showcase-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto auto !important;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .app-col1-row1,
    .app-col1-row2,
    .app-col2-row1,
    .app-col2-row2 {
        min-width: 0;
    }
    
    .app-col1-row1 {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    
    .app-col2-row1 {
        grid-column: 1 !important;
        grid-row: 2 !important;
        padding-right: 0;
    }
    .app-features-list,
    .app-features-list-right {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.25rem 1.75rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .app-col1-row2 {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }
    
    .app-col2-row2 {
        grid-column: 1 !important;
        grid-row: 4 !important;
        padding-left: 0;
        padding-right: 0;
    }

    .app-mockup .mockup-frame {
        flex: none;
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 260px;
    }
    .app-mockup .app-dashboard {
        min-height: min(55vmin, 300px);
    }
    .app-mockup .dashboard-sidebar {
        min-width: 0;
        width: 140px;
    }
    
    /* Workflow Section */
    .workflow-modern-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .workflow-visual-modern {
        position: static !important;
        min-height: auto;
        height: auto;
    }
    
    .workflow-canvas {
        height: 500px !important;
        min-height: 500px !important;
    }
    
    .workflow-info-modern {
        min-height: auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
    }
    .footer-section {
        text-align: center;
    }
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mobile-app-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
        margin: 0 auto;
        margin-left: 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-device {
        width: min(calc(100vw - 2rem), 400px);
        max-width: 400px;
        height: min(calc((100vw - 2rem) * 16 / 9), 711px);
        max-height: 711px;
        aspect-ratio: 9 / 16;
        margin-left: auto;
        margin-right: auto;
        flex-shrink: 0;
        align-self: center;
    }
    
    .mobile-device::before {
        width: 100px;
        height: 22px;
        border-radius: 0 0 1rem 1rem;
    }
    
    .mobile-device::after {
        width: 45px;
        height: 6px;
        top: 6px;
        border-radius: 0 0 0.4rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stakeholder-rotator {
        font-size: 1.1rem;
        flex-wrap: nowrap;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .stakeholders-grid {
        grid-template-columns: 1fr;
    }
    
    .features-stacked-slider {
        min-height: min(400px, 40vh);
    }
    
    .feature-card,
    .stakeholder-card {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-body h2 {
        font-size: 1.5rem;
    }
    
    .stakeholder-timeline-item {
        width: 95%;
        margin-left: 5% !important;
        padding: 1.5rem;
    }
    
    .stakeholders-timeline::before {
        left: 5%;
    }
    
    .stakeholder-timeline-item::before {
        left: -30px !important;
    }
    
    .mobile-app-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-device {
        width: min(calc(100vw - 2rem), 400px);
        max-width: 400px;
        height: min(calc((100vw - 2rem) * 16 / 9), 711px);
        max-height: 711px;
        aspect-ratio: 9 / 16;
        margin-left: auto;
        margin-right: auto;
        flex-shrink: 0;
        align-self: center;
    }
    
    .mobile-device::before {
        width: 90px;
        height: 20px;
        border-radius: 0 0 0.8rem 0.8rem;
    }
    
    .mobile-device::after {
        width: 40px;
        height: 5px;
        top: 5px;
        border-radius: 0 0 0.3rem 0.3rem;
    }
    
    /* Application Section Mobile */
    .app-showcase-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto auto !important;
        gap: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .app-col1-row1,
    .app-col1-row2,
    .app-col2-row1,
    .app-col2-row2 {
        min-width: 0;
        box-sizing: border-box;
    }
    
    .app-col1-row1 {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .app-col2-row1 {
        grid-column: 1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .app-col1-row2 {
        grid-column: 1 !important;
        grid-row: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .app-col2-row2 {
        grid-column: 1 !important;
        grid-row: 4 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    .app-features-list,
    .app-features-list-right {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.25rem 1.75rem;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        overflow-x: hidden;
    }
    
    .application-section {
        padding: 3rem 0;
        overflow-x: hidden;
    }

    .app-mockup .mockup-frame {
        min-height: 220px;
    }
    .app-mockup .app-dashboard {
        min-height: min(50vmin, 260px);
    }
    .app-mockup .dashboard-sidebar {
        width: 64px;
        min-width: 64px;
        align-items: center;
        padding: 0.5rem;
    }
    .app-mockup .dashboard-sidebar .sidebar-label {
        display: none;
    }
    .app-mockup .dashboard-sidebar .sidebar-item {
        justify-content: center;
        padding: 0.75rem;
    }
    
    .application-section .container {
        width: 100%;
        max-width: 100% !important;
        min-width: 0;
        padding: 0 1.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Exchange Section Mobile - Fix blank space and scroll animation */
    .exchange-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .exchange-visual {
        position: static !important;
        margin-top: 2rem;
        width: 100% !important;
    }
    
    .exchange-text {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .ai-predictions {
        margin-top: 2rem;
    }
    .stakeholder-actions {
        padding: 2rem 0;
    }
    
    /* Workflow Section Mobile */
    .workflow-modern-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .workflow-section {
        padding: 3rem 0;
    }
    
    .workflow-visual-modern {
        position: static !important;
        min-height: auto;
        height: auto;
        padding: 1.5rem;
    }
    
    .workflow-canvas {
        height: 450px !important;
        min-height: 450px !important;
    }
    
    .workflow-info-modern {
        min-height: auto;
    }
    
    .workflow-node-modern {
        min-width: 100px;
        padding: 1rem;
    }
    
    .node-modern-icon {
        font-size: 1.5rem;
    }
    
    .node-modern-label {
        font-size: 0.8rem;
    }
    
    /* Adjust node positions for smaller screens */
    .node-start { top: 10%; left: 5%; }
    .node-process { top: 8%; left: 38%; }
    .node-decision { top: 40%; left: 38%; }
    .node-action { top: 60%; left: 65%; }
    .node-notify { top: 20%; left: 65%; }
    .node-complete { top: 40%; left: 78%; }
    .node-analyze { top: 30%; left: 20%; }
    .node-optimize { top: 55%; left: 20%; }
    .node-sync { top: 50%; left: 5%; }
    
    /* Integrations Section Mobile */
    .integrations-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .integrations-cloud-container {
        min-height: 400px;
        padding: 1.5rem !important;
    }

    .integrations {
        overflow-x: hidden;
    }
    
    .integrations .container {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    /* Ecosystem Section Mobile */
    .ecosystem-diagram {
        min-height: 500px;
        overflow: hidden;
    }
    
    .ecosystem-diagram-fixed {
        min-height: 400px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .footer-section {
        text-align: center;
    }
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 0;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .briselle-logo-center {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }
    .briselle-logo-center::before {
        width: 240px;
        height: 240px;
        margin-left: -120px;
        margin-top: -120px;
    }
    .briselle-logo-center i {
        font-size: 1.8rem;
    }
    .briselle-logo-center .briselle-logo-img {
        max-width: 70px;
        max-height: 50px;
        width: auto;
    }
}