/* ===========================================
   Features Page Styles
   Page-specific styles for the features page
   Note: Inherits from theme.css and homepage.css
   =========================================== */

/* ===========================================
   Platform Visual - Hero Section
   =========================================== */

.platform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow: hidden;
}

.platform-hub {
    position: relative;
    width: 500px;
    height: 500px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(30, 79, 226, 0.5);
    z-index: 10;
    overflow: hidden;
    padding: 1.5rem;
}

.hub-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed var(--theme-border-secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 30s linear infinite;
}

.orbit-1 {
    width: 260px;
    height: 260px;
    animation-duration: 25s;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 420px;
    height: 420px;
    animation-duration: 45s;
}

.orbit-4 {
    width: 500px;
    height: 500px;
    animation-duration: 55s;
    animation-direction: reverse;
}

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

.orbit-item {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: counter-rotate 30s linear infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.orbit-1 .orbit-item {
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 25s;
}

.orbit-2 .orbit-item {
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-3 .orbit-item {
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 45s;
}

.orbit-4 .orbit-item {
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 55s;
    animation-direction: reverse;
}

@keyframes counter-rotate {
    from { rotate: 0deg; }
    to { rotate: -360deg; }
}

.orbit-item svg {
    width: 28px;
    height: 28px;
    color: var(--theme-text-tertiary);
}

@media (hover: hover) {
    .orbit-item:hover {
        background: var(--theme-glass-bg-hover);
        border-color: var(--octigen-blue);
        box-shadow: 0 4px 16px rgba(30, 79, 226, 0.3);
    }

    .orbit-item:hover svg {
        color: var(--octigen-blue);
    }
}

/* ===========================================
   Model Cards - Philosophy Section
   =========================================== */

.model-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .model-card:hover {
        border-color: var(--octigen-blue);
        transform: translateY(-4px);
        box-shadow: var(--theme-shadow-md);
    }
}

.model-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.model-card-icon.workflows {
    background: linear-gradient(135deg, var(--octigen-orange), #f7931e);
}

.model-card-icon.decks {
    background: linear-gradient(135deg, #10b981, #059669);
}

.model-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.model-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    margin: 0 0 0.25rem 0;
}

.model-card p {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
    margin: 0;
    opacity: 1;
    line-height: 1.4;
}

.model-card-connector {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.model-card-connector svg {
    width: 24px;
    height: 24px;
    color: var(--theme-text-muted);
}

@media (max-width: 768px) {
    .model-cards {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .model-card {
        padding: 1rem 0.75rem;
        min-width: 0;
        flex: 1;
        border-radius: 12px;
    }
    
    .model-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }
    
    .model-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .model-card h4 {
        font-size: 0.85rem;
        text-align: center !important;
    }
    
    .model-card p {
        font-size: 0.7rem;
        text-align: center !important; /* Override justified text on mobile */
    }
    
    .model-card-connector {
        display: none;
    }
}

/* ===========================================
   Template Visual
   =========================================== */

.template-visual {
    padding: 1rem;
}

.template-preview {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--theme-shadow-lg);
}

.template-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: var(--theme-bg-elevated);
    border-bottom: 1px solid var(--theme-border-secondary);
}

.template-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.template-dot.red { background: #ff5f57; }
.template-dot.yellow { background: #febc2e; }
.template-dot.green { background: #28c840; }

.template-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--theme-text-tertiary);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.template-body {
    padding: 1.25rem;
}

.template-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.template-category {
    flex-shrink: 0;
    min-width: 120px;
}

.category-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--theme-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.category-slide {
    background: white;
    border: 1px solid var(--theme-border-secondary);
    border-radius: 8px;
    padding: 0.75rem;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .category-slide {
    background: #1e1e2e;
}

.template-category.active .category-slide {
    border-color: var(--octigen-blue);
    box-shadow: 0 0 0 2px rgba(30, 79, 226, 0.2);
}

.slide-shape {
    background: rgba(30, 79, 226, 0.08);
    border: 1.5px dashed rgba(30, 79, 226, 0.3);
    border-radius: 4px;
    padding: 0.25rem 0.4rem;
    margin: 0 0 0.35rem 0;
    font-size: 0.55rem;
    color: var(--octigen-blue);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    display: table;
}

/* "By Example" style - solid boxes with real content look */
.slide-shape.example {
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    color: var(--theme-text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.slide-shape.title-shape {
    font-size: 0.7rem;
    padding: 0.4rem;
}

.slide-shape.text-shape {
    padding: 0.35rem 0.5rem;
}

.slide-shape.text-shape.small {
    font-size: 0.5rem;
    padding: 0.25rem 0.4rem;
}

.slide-shape.chart-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-top: 0.25rem;
}

.mini-bars .bar {
    width: 10px;
    background: rgba(30, 79, 226, 0.3);
    border-radius: 2px 2px 0 0;
}

.mini-bars .bar:nth-child(1) { height: 40%; }
.mini-bars .bar:nth-child(2) { height: 70%; }
.mini-bars .bar:nth-child(3) { height: 55%; }

/* Solid bars for "by example" style */
.slide-shape.example .mini-bars .bar {
    background: var(--octigen-blue);
}

.template-analysis {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
}

.analysis-icon {
    color: #10b981;
}

.analysis-icon svg {
    width: 18px;
    height: 18px;
}

.analysis-text {
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    flex: 1;
}

.analysis-status {
    font-size: 0.7rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================================
   Workflow Visual
   =========================================== */

.workflow-visual {
    padding: 1rem;
}

.workflow-preview {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--theme-shadow-lg);
}

.workflow-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--theme-bg-elevated);
    border-bottom: 1px solid var(--theme-border-secondary);
}

.workflow-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.workflow-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    flex: 1;
}

.workflow-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-body {
    padding: 1.25rem;
}

.workflow-section {
    margin-bottom: 1.25rem;
}

.workflow-section:last-child {
    margin-bottom: 0;
}

.workflow-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--theme-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.workflow-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
}

.item-num {
    width: 20px;
    height: 20px;
    background: var(--theme-border-secondary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--theme-text-tertiary);
}

.item-tag {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--theme-text-muted);
    background: var(--theme-border-secondary);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

.item-tag.multi {
    color: var(--octigen-blue);
    background: rgba(30, 79, 226, 0.1);
}

.workflow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.workflow-tag {
    font-size: 0.8rem;
    color: var(--theme-text-secondary);
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

/* ===========================================
   Data Visual
   =========================================== */

.data-visual {
    padding: 1rem;
}

.data-sources-container {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--theme-shadow-lg);
}

.data-source-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .data-source:hover {
        border-color: var(--octigen-blue);
    }
}

.source-icon {
    font-size: 1.25rem;
}

.source-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.source-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--theme-text-primary);
}

.source-type {
    font-size: 0.7rem;
    color: var(--theme-text-tertiary);
}

.source-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--theme-border-secondary);
}

.source-status.connected {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.data-flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.flow-line {
    width: 2px;
    height: 20px;
    background: var(--octigen-blue);
}

.flow-badge {
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-collection {
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.collection-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.08), transparent);
    border-bottom: 1px solid var(--theme-border-secondary);
}

.collection-icon {
    font-size: 1rem;
}

.collection-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--theme-text-primary);
}

.collection-fields {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.field-name {
    color: var(--theme-text-secondary);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.field-type {
    color: var(--theme-text-muted);
    font-size: 0.7rem;
    background: var(--theme-border-secondary);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}

/* ===========================================
   AI Assistants Grid
   =========================================== */

.assistant-card {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .assistant-card:hover {
        border-color: var(--theme-border-hover);
        transform: translateY(-4px);
        box-shadow: var(--theme-shadow-lg);
    }
}

.assistant-card.featured {
    border-color: var(--octigen-blue);
    background: linear-gradient(135deg, var(--theme-glass-bg) 0%, rgba(30, 79, 226, 0.05) 100%);
}

.assistant-card.user-card {
    border-color: var(--octigen-orange);
    background: linear-gradient(135deg, var(--theme-glass-bg) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.assistant-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.assistant-icon.template { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.assistant-icon.content { background: linear-gradient(135deg, var(--octigen-blue), #1a45c7); }
.assistant-icon.structure { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.assistant-icon.populate { background: linear-gradient(135deg, #10b981, #059669); }
.assistant-icon.refine { background: linear-gradient(135deg, var(--octigen-orange), #f7931e); }
.assistant-icon.user { background: linear-gradient(135deg, #f59e0b, #d97706); }

.assistant-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.assistant-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem 0;
}

.assistant-card p {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    opacity: 1;
}

.assistant-tasks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.task {
    font-size: 0.7rem;
    color: var(--theme-text-tertiary);
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.task.user-task {
    color: var(--octigen-orange);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

/* ===========================================
   Creation Phases - Card Grid Layout
   =========================================== */

.creation-phases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    position: relative;
}

.phase-card {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) {
    .phase-card:hover {
        border-color: var(--theme-border-hover);
        transform: translateY(-4px);
        box-shadow: var(--theme-shadow-lg);
    }
}

.phase-card.final {
    background: linear-gradient(135deg, var(--theme-glass-bg) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

@media (hover: hover) {
    .phase-card.final:hover {
        border-color: rgba(16, 185, 129, 0.5);
    }
}

.phase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.phase-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-card.final .phase-number {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phase-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .phase-card:hover .phase-icon {
        border-color: var(--octigen-blue);
        background: rgba(30, 79, 226, 0.1);
    }

    .phase-card.final:hover .phase-icon {
        border-color: rgba(16, 185, 129, 0.5);
        background: rgba(16, 185, 129, 0.1);
    }
}

.phase-icon svg {
    width: 20px;
    height: 20px;
    color: var(--theme-text-tertiary);
    transition: color 0.3s ease;
}

@media (hover: hover) {
    .phase-card:hover .phase-icon svg {
        color: var(--octigen-blue);
    }

    .phase-card.final:hover .phase-icon svg {
        color: #10b981;
    }
}

.phase-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phase-card-body h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem 0;
}

.phase-card-body p {
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    margin: 0 0 1rem 0;
    line-height: 1.6;
    opacity: 1;
    flex: 1;
}

.phase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.phase-features span {
    font-size: 0.65rem;
    color: var(--theme-text-tertiary);
    background: var(--theme-bg-elevated);
    border: 1px solid var(--theme-border-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.phase-features.final-features span {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.phase-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.phase-arrow svg {
    width: 14px;
    height: 14px;
    color: var(--theme-text-muted);
}

.phase-card:last-child .phase-arrow {
    display: none;
}

/* Tablet - 3 + 2 layout */
@media (max-width: 1200px) {
    .creation-phases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .phase-arrow {
        display: none;
    }
    
    .phase-card {
        padding: 1.25rem;
    }
}

/* Mobile - stack */
@media (max-width: 768px) {
    .creation-phases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .phase-card-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .phase-number {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
    }
    
    .phase-icon {
        width: 32px;
        height: 32px;
    }
    
    .phase-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .phase-card-body h4 {
        font-size: 1rem;
    }
    
    .phase-card-body p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
}

/* ===========================================
   Feature List
   =========================================== */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--theme-text-secondary);
}

.feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

/* ===========================================
   Highlight Card
   =========================================== */

.highlight-card {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.08), rgba(30, 79, 226, 0.02));
    border: 1px solid rgba(30, 79, 226, 0.2);
    border-radius: 12px;
}

.highlight-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem 0;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin: 0;
    line-height: 1.6;
    opacity: 1;
}

/* ===========================================
   Responsive Adjustments
   =========================================== */

@media (max-width: 991px) {
    .platform-hub {
        width: 400px;
        height: 400px;
    }
    
    .hub-center {
        width: 100px;
        height: 100px;
        border-radius: 22px;
        padding: 1.25rem;
    }
    
    .orbit-1 { width: 200px; height: 200px; }
    .orbit-2 { width: 265px; height: 265px; }
    .orbit-3 { width: 330px; height: 330px; }
    .orbit-4 { width: 400px; height: 400px; }
    
    .orbit-item {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .orbit-1 .orbit-item { top: -24px; }
    .orbit-2 .orbit-item { right: -24px; }
    .orbit-3 .orbit-item { bottom: -24px; }
    .orbit-4 .orbit-item { left: -24px; }
    
    .orbit-item svg {
        width: 24px;
        height: 24px;
    }
    
    .template-categories {
        flex-wrap: wrap;
    }
    
    .template-category {
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .platform-visual {
        padding: 1rem 0;
    }
    
    .platform-hub {
        width: 320px;
        height: 320px;
    }
    
    .hub-center {
        width: 80px;
        height: 80px;
        border-radius: 18px;
        padding: 1rem;
    }
    
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 210px; height: 210px; }
    .orbit-3 { width: 260px; height: 260px; }
    .orbit-4 { width: 320px; height: 320px; }
    
    .orbit-item {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .orbit-1 .orbit-item { top: -20px; }
    .orbit-2 .orbit-item { right: -20px; }
    .orbit-3 .orbit-item { bottom: -20px; }
    .orbit-4 .orbit-item { left: -20px; }
    
    .orbit-item svg {
        width: 20px;
        height: 20px;
    }
    
    /* Keep template categories in 2 columns on mobile */
    .template-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .template-category {
        min-width: 0;
    }
    
    .category-badge {
        font-size: 0.55rem;
        margin-bottom: 0.35rem;
    }
    
    .category-slide {
        padding: 0.4rem;
        min-height: 55px;
        overflow: hidden;
    }
    
    .slide-shape {
        font-size: 0.4rem;
        padding: 0.15rem 0.25rem;
        margin-bottom: 0.15rem;
    }
    
    .slide-shape.title-shape {
        font-size: 0.45rem;
        padding: 0.2rem;
    }
    
    .slide-shape.text-shape {
        padding: 0.2rem 0.3rem;
    }
    
    .slide-shape.text-shape.small {
        font-size: 0.35rem;
        padding: 0.15rem 0.25rem;
    }
    
    .template-body {
        padding: 1rem;
    }
    
    .template-analysis {
        padding: 0.6rem 0.75rem;
    }
    
    .analysis-text {
        font-size: 0.75rem;
    }
    
    .analysis-status {
        font-size: 0.6rem;
    }
    
    .assistant-card {
        padding: 1rem;
    }
    
    /* Remove highlighted styling for featured/user cards on mobile */
    .assistant-card.featured {
        border-color: var(--theme-glass-border);
        background: var(--theme-glass-bg);
    }
    
    .assistant-card.user-card {
        border-color: var(--theme-glass-border);
        background: var(--theme-glass-bg);
    }
    
    /* 2-column grid for assistant cards on mobile */
    #ai-assistants .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        margin: 0;
    }
    
    #ai-assistants .row.g-4 > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .assistant-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }
    
    .assistant-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .assistant-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .assistant-card p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .assistant-tasks {
        gap: 0.25rem;
    }
    
    .task {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ===========================================
   Alpha Release CTA Banner
   A lightweight, reusable CTA section
   =========================================== */

.alpha-cta-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.alpha-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.06), rgba(30, 79, 226, 0.02));
    border: 1px solid rgba(30, 79, 226, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .alpha-cta-banner:hover {
        border-color: rgba(30, 79, 226, 0.3);
        box-shadow: 0 4px 20px rgba(30, 79, 226, 0.08);
    }
}

.alpha-cta-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.alpha-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(30, 79, 226, 0.3);
}

.alpha-cta-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--theme-text-secondary);
    line-height: 1.5;
}

.alpha-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: transparent;
    color: var(--octigen-blue);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--octigen-blue);
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.alpha-cta-btn:hover {
    background: var(--octigen-blue);
    color: white;
    transform: translateX(2px);
}

.alpha-cta-btn svg {
    transition: transform 0.2s ease;
}

.alpha-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
    .alpha-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .alpha-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .alpha-cta-btn {
        align-self: flex-start;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .alpha-cta-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .alpha-cta-banner {
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }
    
    .alpha-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .alpha-cta-text {
        font-size: 0.85rem;
    }
    
    .alpha-cta-btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===========================================
   Data Sovereignty & Security Section
   =========================================== */

.data-sovereignty-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.sovereignty-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .sovereignty-banner:hover {
        border-color: rgba(16, 185, 129, 0.35);
        box-shadow: 0 4px 24px rgba(16, 185, 129, 0.1);
    }
}

.sovereignty-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.sovereignty-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.sovereignty-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--theme-text-primary);
}

.sovereignty-points {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.sovereignty-point {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.point-content {
    flex: 1;
}

.point-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: 0.35rem;
}

.point-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
}

.sovereignty-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(16, 185, 129, 0.2);
    margin: 0 0.5rem;
}

.sovereignty-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10b981;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sovereignty-link:hover {
    color: #059669;
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
    .sovereignty-banner {
        padding: 1.75rem 2rem;
    }
    
    .sovereignty-points {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .sovereignty-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .data-sovereignty-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .sovereignty-banner {
        padding: 1.25rem 1.25rem;
        border-radius: 16px;
    }
    
    .sovereignty-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }
    
    .sovereignty-icon {
        width: 40px;
        height: 40px;
    }
    
    .sovereignty-header h3 {
        font-size: 1.25rem;
    }
    
    .sovereignty-point {
        gap: 0.75rem;
    }
    
    .point-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .point-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .point-content strong {
        font-size: 0.9rem;
    }
    
    .point-content p {
        font-size: 0.85rem;
    }
}
