/* HappilionOS Vesper Light-Theme Design System */

:root {
    /* Color Tokens (Light, Premium, Luxury) */
    --bg-color: #faf9fc;
    --surface-bg: rgba(255, 255, 255, 0.72);
    --surface-border: rgba(72, 132, 225, 0.06);
    --surface-border-hover: rgba(0, 85, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(72, 132, 225, 0.03), inset 0 1px 0px rgba(255, 255, 255, 0.6);
    --shadow-hover: 0 20px 40px rgba(0, 85, 255, 0.06), inset 0 1px 0px rgba(255, 255, 255, 0.8);
    
    /* Typography Colors */
    --text-primary: #0f0c13;
    --text-secondary: #5f5869;
    --text-dim: #938c9d;
    
    /* Core Glow Accents */
    --primary-blue: #0055ff;
    --royal-purple: #aa00ff;
    --cyan-glow: #00d4ff;
    
    /* Context Colors */
    --green: #00b0ff;
    --green-bg: rgba(0, 176, 255, 0.05);
    --green-border: rgba(0, 176, 255, 0.15);
    
    --purple: #8e24aa;
    --purple-bg: rgba(142, 36, 170, 0.05);
    --purple-border: rgba(142, 36, 170, 0.15);
    
    --blue: #1e88e5;
    --blue-bg: rgba(30, 136, 229, 0.05);
    --blue-border: rgba(30, 136, 229, 0.15);
    
    /* Layout */
    --radius-panel: 16px;
    --radius-pill: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Glow Orbs (Soft AI presence behind pages) */
.ambient-glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
}

.glow-orb.top-left {
    background: radial-gradient(circle, rgba(0, 85, 255, 0.18) 0%, transparent 70%);
    top: -20vh;
    left: -10vw;
}

.glow-orb.top-right {
    background: radial-gradient(circle, rgba(170, 0, 255, 0.12) 0%, transparent 70%);
    top: -10vh;
    right: -10vw;
}

.glow-orb.bottom-left {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    bottom: -20vh;
    left: 10vw;
}

/* Header Navigation */
.header {
    background: rgba(250, 249, 252, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(72, 132, 225, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-accent {
    color: var(--primary-blue);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-blue);
    background: rgba(0, 85, 255, 0.04);
}

.nav-btn {
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.15);
}

.nav-btn:hover {
    background: var(--royal-purple);
    box-shadow: 0 6px 16px rgba(170, 0, 255, 0.25);
}

.search-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.search-trigger:hover {
    color: var(--primary-blue);
    background: rgba(0, 85, 255, 0.04);
}

/* Page Contents Layout */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Showcase */
.hero-showcase {
    text-align: center;
    padding: 60px 0;
}

.brand-badge {
    display: inline-block;
    background: rgba(0, 85, 255, 0.05);
    border: 1px solid rgba(0, 85, 255, 0.12);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 20px;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.hero-actions-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.action-btn-glow {
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 85, 255, 0.2);
    transition: var(--transition-smooth);
}

.action-btn-glow:hover {
    background: var(--royal-purple);
    box-shadow: 0 12px 30px rgba(170, 0, 255, 0.3);
}

.action-btn-outline {
    background: #fff;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    border: 1px solid rgba(72, 132, 225, 0.08);
    transition: var(--transition-smooth);
}

.action-btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Glassmorphic Panel Base */
.glass-panel {
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-panel);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--surface-border-hover);
    box-shadow: var(--shadow-hover);
}

/* Page Layout Structure */
.page-layout {
    padding: 40px 0;
}

.section-hero {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-top: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Split Grid Main Section */
.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}

.main-panel {
    padding: 30px;
}

.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.panel-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 20px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 20px; }

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.grid-layout.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

@media (max-width: 576px) {
    .grid-layout.cols-2 {
        grid-template-columns: 1fr;
    }
}

.grid-layout.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Metrics and Stats */
.metric-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.metric-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.metric-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
}

.metric-badge.green { background: var(--green-bg); border-color: var(--green-border); color: var(--green); }
.metric-badge.purple { background: var(--purple-bg); border-color: var(--purple-border); color: var(--purple); }
.metric-badge.blue { background: var(--blue-bg); border-color: var(--blue-border); color: var(--blue); }

.metric-number {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.metric-description {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Desktop Simulator emulator */
.desktop-preview-section {
    padding: 40px 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 6px;
}

.desktop-simulator {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(72, 132, 225, 0.08);
}

.sim-header {
    background: #e8e6ed;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(72, 132, 225, 0.06);
}

.sim-dots {
    display: flex;
    gap: 6px;
}

.sim-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.sim-dots .red { background-color: #ff5f56; }
.sim-dots .yellow { background-color: #ffbd2e; }
.sim-dots .green { background-color: #27c93f; }

.sim-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sim-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
}

.sim-screen {
    background: #09080d;
    height: 480px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sim-screen.desktop-active {
    background: radial-gradient(circle at center, #211930 0%, #09080d 100%);
}

.screen-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stage-off {
    justify-content: center;
    align-items: center;
}

.power-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.power-btn:hover {
    background: rgba(0, 85, 255, 0.2);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 85, 255, 0.4);
}

.stage-booting {
    padding: 24px;
    justify-content: space-between;
}

.boot-logs {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.78rem;
    color: #00d4ff;
    line-height: 1.45;
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 20px;
}

.boot-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.boot-progress-fill {
    height: 100%;
    background: var(--cyan-glow);
    width: 0%;
    transition: width 0.3s ease;
}

/* Interactive Mock OS Desktop */
.stage-desktop {
    color: #fff;
}

.desktop-wallpaper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.desktop-hud {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex-grow: 1;
    margin: 20px 0;
}

.desktop-window {
    background: rgba(18, 16, 24, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px;
    overflow: hidden;
}

.window-titlebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.02em;
}

.window-content {
    padding: 12px;
    line-height: 1.4;
}

.desktop-dock {
    align-self: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: var(--radius-pill);
    display: flex;
    gap: 6px;
}

.dock-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.62rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.dock-icon-btn:hover {
    transform: scale(1.1) translateY(-4px);
    background: var(--primary-blue);
}

/* Architecture Comparison layers */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
}

.dia-layer {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.dia-layer.app { background: rgba(0, 85, 255, 0.03); border-color: rgba(0, 85, 255, 0.08); color: var(--primary-blue); }
.dia-layer.driver { background: rgba(170, 0, 255, 0.03); border-color: rgba(170, 0, 255, 0.08); color: var(--royal-purple); }
.dia-layer.engine { background: rgba(0, 212, 255, 0.03); border-color: rgba(0, 212, 255, 0.08); color: var(--cyan-glow); }
.dia-layer.kernel { background: var(--primary-blue); color: #fff; box-shadow: 0 4px 12px rgba(0, 85, 255, 0.15); }
.dia-layer.hardware { background: #e8e6ed; color: var(--text-primary); border-color: rgba(72, 132, 225, 0.05); }

/* Double Column grid layouts */
.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Verification Gates List */
.gates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gate-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(72, 132, 225, 0.01);
    border: 1px solid rgba(72, 132, 225, 0.03);
    padding: 12px 18px;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.gate-card:hover {
    background: rgba(72, 132, 225, 0.02);
    border-color: rgba(0, 85, 255, 0.1);
}

.gate-name-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gate-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.gate-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
}

.gate-status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
}

.gate-status-badge.cleared {
    background: var(--green-bg);
    border-color: var(--green-border);
    color: var(--green);
}

.gate-status-badge.review {
    background: var(--purple-bg);
    border-color: var(--purple-border);
    color: var(--purple);
}

/* Premium Vesper Glow Button */
.glow-button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: var(--radius-pill);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.2);
    transition: var(--transition-smooth);
    width: 100%;
}

.glow-button:hover {
    background: var(--royal-purple);
    box-shadow: 0 12px 32px rgba(170, 0, 255, 0.35);
}

.glow-button.running {
    background: var(--text-dim);
    cursor: not-allowed;
    box-shadow: none;
}

/* Diagnostic Terminal Console */
.diagnostic-terminal {
    border-radius: 10px;
    background: #09080d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(72, 132, 225, 0.08);
}

.terminal-header {
    background: #121017;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-dots .red { background-color: #ff5f56; }
.terminal-dots .yellow { background-color: #ffbd2e; }
.terminal-dots .green { background-color: #27c93f; }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 0.72rem;
}

.console-body {
    padding: 16px;
    height: 200px;
    overflow-y: auto;
    color: #f1ecf9;
    line-height: 1.45;
}

.console-line {
    margin-bottom: 4px;
}

.console-line.system { color: var(--text-dim); }
.console-line.success { color: var(--green); }
.console-line.error { color: #ff3366; }
.console-line.info { color: var(--cyan-glow); }

/* Download details requirements */
.requirements-box {
    background: rgba(0, 85, 255, 0.03);
    border: 1px solid rgba(0, 85, 255, 0.08);
    border-radius: 8px;
    line-height: 1.5;
}

.rec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
}

/* Documentation Split Layout */
.docs-page-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .docs-page-layout {
        grid-template-columns: 1fr;
    }
}

.docs-sidebar {
    padding: 24px;
    height: calc(100vh - 120px);
    position: sticky;
    top: 90px;
    overflow-y: auto;
}

.sidebar-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.sidebar-search-box input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(72, 132, 225, 0.06);
    background: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 20px;
}

.sidebar-category-group {
    margin-bottom: 20px;
}

.sidebar-category-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.sidebar-articles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--primary-blue);
    background: rgba(0, 85, 255, 0.04);
}

.docs-content-area {
    padding: 40px;
    min-height: calc(100vh - 120px);
}

.doc-breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.doc-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    line-height: 1.15;
}

/* Markdown HTML Content viewer styling */
.markdown-content {
    line-height: 1.6;
    color: var(--text-secondary);
}

.markdown-content h1, .markdown-content h2, .markdown-content h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.markdown-content h1 { font-size: 1.8rem; }
.markdown-content h2 { font-size: 1.45rem; border-bottom: 1px solid rgba(72,132,225,0.04); padding-bottom: 6px; }
.markdown-content h3 { font-size: 1.2rem; }

.markdown-content p {
    margin-bottom: 16px;
}

.markdown-content code {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.82rem;
    background: rgba(72, 132, 225, 0.04);
    padding: 3px 6px;
    border-radius: 4px;
    color: var(--royal-purple);
}

.markdown-content pre {
    background: #09080d;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.markdown-content pre code {
    background: none;
    color: #f1ecf9;
    padding: 0;
}

.markdown-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.markdown-content li {
    margin-bottom: 6px;
}

/* Docs Welcome screen default */
.docs-welcome-screen {
    text-align: center;
    padding: 40px 0;
}

.welcome-badge {
    background: rgba(0, 85, 255, 0.05);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.welcome-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 15px;
}

.welcome-subtitle {
    color: var(--text-secondary);
    margin-top: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.welcome-card {
    background: rgba(72, 132, 225, 0.01);
    border: 1px solid rgba(72, 132, 225, 0.03);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.welcome-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.welcome-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.welcome-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

/* Fullscreen Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(14, 12, 18, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
}

.search-modal {
    width: 100%;
    max-width: 650px;
    background: #fff;
    border: 1px solid rgba(72, 132, 225, 0.08);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(72, 132, 225, 0.15);
    overflow: hidden;
}

.search-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(72, 132, 225, 0.04);
    display: flex;
    align-items: center;
}

.search-header input {
    flex-grow: 1;
    border: none;
    background: none;
    font-size: 1.1rem;
    color: var(--text-primary);
    outline: none;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
}

.search-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.search-placeholder {
    color: var(--text-dim);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

.search-result-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.search-result-item:hover {
    background: rgba(0, 85, 255, 0.04);
}

.search-result-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.98rem;
}

.search-result-cat {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.search-result-snippet {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(72, 132, 225, 0.03);
    background: rgba(250, 249, 252, 0.5);
    margin-top: 80px;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.45;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 160px);
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(72,132,225,0.03);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Portal navigation */
.nav-mega { position: relative; }
.nav-mega summary { list-style: none; cursor: pointer; }
.nav-mega summary::-webkit-details-marker { display: none; }
.mega-panel { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%); width: min(760px, 82vw); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 24px; border: 1px solid var(--surface-border); border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: 0 24px 70px rgba(30,54,100,.18); z-index: 30; }
.mega-panel section, .mega-panel a { display: block; }
.mega-panel b { display: block; margin-bottom: 10px; }
.mega-panel a { padding: 5px 0; color: var(--text-secondary); text-decoration: none; font-size: .86rem; }
.mega-panel a:hover { color: var(--primary-blue); }
.header-text-link { color: var(--text-secondary); text-decoration: none; font-size: .82rem; white-space: nowrap; }
.footer-links-grid { grid-template-columns: repeat(6, minmax(110px, 1fr)); }
@media (max-width: 1100px) { .nav-links { display: none; } .header-text-link { display: none; } .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .footer-links-grid { grid-template-columns: repeat(2, 1fr); } .header-actions .nav-btn { padding: 8px 11px; font-size: .75rem; } }
/* Layout resilience fixes */
.header-inner { max-width: 1500px; gap: 14px; }
.nav-links { gap: 2px; min-width: 0; }
.nav-item { padding: 6px 8px; font-size: .84rem; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.content-wrapper, .page-layout, .homepage-layout, .structured-page { width: 100%; min-width: 0; }
img, svg, video, canvas { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; }
.grid-layout > *, .split-grid > *, .recognition-grid > *, .purpose-grid > * { min-width: 0; }
@media (max-width: 760px) {
  .content-wrapper { padding: 22px 14px; }
  .page-layout { padding: 20px 0; }
  .hero-showcase { padding: 34px 0; }
  .main-headline { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .page-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-actions-group { flex-direction: column; align-items: stretch; }
  .hero-actions-group a { text-align: center; }
  .grid-layout, .grid-layout.cols-2, .grid-layout.cols-3 { grid-template-columns: minmax(0, 1fr); }
  .main-panel, .glass-panel { max-width: 100%; }
}
/* Responsive system v2 */
.mobile-menu-trigger { display: none; width: 40px; height: 40px; border: 1px solid var(--surface-border); border-radius: 12px; background: rgba(255,255,255,.8); align-items: center; justify-content: center; flex-direction: column; gap: 4px; cursor: pointer; }
.mobile-menu-trigger span { width: 18px; height: 2px; border-radius: 2px; background: var(--text-primary); }
button, input, select, textarea { max-width: 100%; font: inherit; }
table { width: 100%; }
.form-grid, .purpose-grid, .next-links > div { min-width: 0; }

@media (max-width: 1100px) {
  .header-inner { min-height: 68px; padding: 12px 18px; }
  .mobile-menu-trigger { display: flex; margin-left: auto; }
  .nav-links { display: none; position: absolute; top: calc(100% + 1px); left: 14px; right: 14px; max-height: calc(100vh - 90px); overflow-y: auto; padding: 14px; flex-direction: column; align-items: stretch; gap: 4px; background: rgba(255,255,255,.98); border: 1px solid var(--surface-border); border-radius: 18px; box-shadow: 0 24px 60px rgba(30,54,100,.18); }
  .nav-links.mobile-open { display: flex; }
  .nav-links .nav-item { display: block; width: 100%; padding: 11px 12px; font-size: .95rem; }
  .nav-mega { width: 100%; }
  .mega-panel { position: static; transform: none; width: 100%; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 6px; padding: 16px; box-shadow: none; background: #f8faff; }
  .header-actions { margin-left: 0; }
  .header-text-link { display: none; }
  .footer-inner { display: block; }
  .footer-brand { max-width: 520px; margin-bottom: 32px; }
}

@media (max-width: 820px) {
  .content-wrapper { padding: 24px 16px; }
  .hero-showcase { padding: 38px 0 44px; }
  .main-headline { font-size: clamp(2.35rem, 9vw, 3.6rem); }
  .sub-headline { font-size: 1.02rem; }
  .recognition-grid, .split-grid, .purpose-grid, .structured-hero, .status-panel { grid-template-columns: minmax(0,1fr) !important; }
  .grid-layout, .grid-layout.cols-2, .grid-layout.cols-3, .desktop-grid { grid-template-columns: minmax(0,1fr); }
  .os-recognition-panel, .main-panel, .structured-hero, .status-panel { padding: 24px; }
  .sim-screen { height: clamp(340px, 65vw, 460px); }
  .desktop-hud { gap: 8px; flex-wrap: wrap; border-radius: 12px; }
  .desktop-grid { overflow-y: auto; }
  .docs-page-layout { grid-template-columns: minmax(0,1fr); }
  .docs-sidebar { position: static; max-height: 320px; }
  .footer { margin-top: 54px; padding: 44px 18px 24px; }
  .footer-links-grid { grid-template-columns: repeat(3, minmax(0,1fr)); width: 100%; }
  .next-links > div { grid-template-columns: repeat(2, minmax(0,1fr)); }
  table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 560px) {
  .header-inner { padding: 10px 12px; gap: 8px; }
  .logo-text { font-size: 1.08rem; }
  .logo-mark { width: 24px; height: 24px; }
  .header-actions .nav-btn { display: none; }
  .mobile-menu-trigger { margin-left: auto; }
  .nav-links { left: 8px; right: 8px; }
  .mega-panel { grid-template-columns: minmax(0,1fr); }
  .content-wrapper { padding: 18px 12px; }
  .hero-showcase { padding: 26px 0 34px; }
  .main-headline { font-size: clamp(2rem, 12vw, 2.8rem); overflow-wrap: anywhere; }
  .hero-actions-group { gap: 10px; }
  .action-btn-glow, .action-btn-outline { width: 100%; padding: 11px 18px; }
  .os-recognition-panel, .main-panel, .structured-hero, .status-panel { padding: 18px; }
  .page-title { font-size: clamp(1.9rem, 10vw, 2.5rem); overflow-wrap: anywhere; }
  .section-title, .panel-title { overflow-wrap: anywhere; }
  .sim-header { padding: 9px 10px; }
  .sim-title { max-width: 54%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sim-screen { height: 360px; }
  .stage-booting { padding: 14px; }
  .desktop-wallpaper { padding: 10px; }
  .desktop-hud .hud-item:nth-child(2) { display: none; }
  .desktop-grid { margin: 10px 0; gap: 8px; }
  .desktop-window.small:nth-child(2) { display: none; }
  .window-content { font-size: .66rem; }
  .footer-links-grid, .next-links > div { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 16px; }
  .footer-link { overflow-wrap: anywhere; }
  .search-modal { width: calc(100% - 20px); margin-top: 8vh; }
  .search-header { padding: 14px; }
  .search-header input { min-width: 0; font-size: 1rem; }
}

@media (max-width: 360px) {
  .footer-links-grid, .next-links > div { grid-template-columns: minmax(0,1fr); }
}
/* Professional portal components */
.structured-page { max-width: 1180px; margin: 0 auto; padding: 24px 0 30px; }
.page-crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--text-dim); font-size: .82rem; font-weight: 600; }
.page-crumbs a { color: var(--text-secondary); text-decoration: none; }
.page-crumbs a:hover { color: var(--primary-blue); }
.page-crumbs b { color: var(--text-primary); }
.structured-hero { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1.7fr) minmax(260px,.7fr); gap: 42px; align-items: center; padding: 58px; border: 1px solid rgba(60,92,180,.1); border-radius: 28px; background: linear-gradient(135deg,rgba(255,255,255,.94),rgba(241,246,255,.88)); box-shadow: 0 30px 80px rgba(42,66,130,.09); }
.structured-hero::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -120px; top: -180px; background: radial-gradient(circle,rgba(0,85,255,.16),transparent 68%); pointer-events: none; }
.structured-hero > div, .structured-hero aside { position: relative; z-index: 1; min-width: 0; }
.structured-hero > div > span, .status-panel > div > span, .next-links > span { display: block; color: var(--primary-blue); font-size: .72rem; line-height: 1; letter-spacing: .12em; font-weight: 800; margin-bottom: 16px; }
.structured-hero h1 { font-family: 'Outfit',sans-serif; font-size: clamp(3rem,6vw,5.4rem); line-height: .94; letter-spacing: -.055em; margin-bottom: 22px; }
.structured-hero > div > p { max-width: 720px; color: var(--text-secondary); font-size: 1.04rem; line-height: 1.7; }
.structured-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.structured-actions a { padding: 11px 17px; border-radius: 999px; color: #fff; background: var(--primary-blue); text-decoration: none; font-size: .86rem; font-weight: 700; box-shadow: 0 8px 20px rgba(0,85,255,.18); }
.structured-actions a + a { color: var(--text-primary); background: #fff; border: 1px solid rgba(72,132,225,.08); box-shadow: none; }
.structured-hero aside { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.74); border: 1px solid rgba(0,85,255,.1); backdrop-filter: blur(18px); }
.structured-hero aside small { display: block; color: var(--text-dim); font-size: .68rem; letter-spacing: .12em; font-weight: 800; }
.structured-hero aside strong { display: block; margin: 8px 0; font-family: 'Outfit',sans-serif; font-size: 1.3rem; }
.structured-hero aside p { color: var(--text-secondary); font-size: .86rem; line-height: 1.55; }
.structured-hero aside div { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--text-secondary); font-size: .78rem; font-weight: 600; }
.structured-hero aside i { width: 8px; height: 8px; border-radius: 50%; background: #20b86a; box-shadow: 0 0 0 5px rgba(32,184,106,.1); }
.purpose-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin: 22px 0; }
.purpose-grid > div { min-height: 220px; padding: 28px; border-radius: 20px; border: 1px solid rgba(72,132,225,.055); background: rgba(255,255,255,.78); box-shadow: 0 12px 36px rgba(24,45,100,.045); transition: transform .3s ease,border-color .3s ease,box-shadow .3s ease; }
.purpose-grid > div:hover { transform: translateY(-4px); border-color: rgba(0,85,255,.2); box-shadow: 0 20px 45px rgba(24,45,100,.09); }
.purpose-grid small { color: var(--primary-blue); font-size: .7rem; letter-spacing: .1em; font-weight: 800; }
.purpose-grid h2 { margin: 36px 0 10px; font-family: 'Outfit',sans-serif; font-size: 1.42rem; line-height: 1.1; }
.purpose-grid p { color: var(--text-secondary); font-size: .9rem; line-height: 1.58; }
.status-panel { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 54px; align-items: center; margin: 22px 0; padding: 48px; border-radius: 26px; color: #fff; background: linear-gradient(135deg,#0c1224,#121d38 62%,#142953); box-shadow: 0 28px 65px rgba(8,20,52,.18); }
.status-panel > div > span { color: #80b2ff; }
.status-panel h2 { font-family: 'Outfit',sans-serif; font-size: clamp(2rem,4vw,3.2rem); line-height: 1; letter-spacing: -.035em; margin-bottom: 15px; }
.status-panel p { color: rgba(255,255,255,.68); line-height: 1.6; }
.status-panel ol { counter-reset: status; list-style: none; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.status-panel li { counter-increment: status; position: relative; min-height: 92px; padding: 17px 16px 16px 54px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.055); }
.status-panel li::before { content: counter(status,decimal-leading-zero); position: absolute; left: 16px; top: 17px; color: #80b2ff; font: 700 .72rem 'Roboto Mono',monospace; }
.status-panel li b, .status-panel li small { display: block; }
.status-panel li b { margin-bottom: 5px; font-size: .9rem; }
.status-panel li small { color: rgba(255,255,255,.58); line-height: 1.4; }
.next-links { margin-top: 24px; padding: 36px 0 10px; }
.next-links > div { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.next-links a { position: relative; min-height: 128px; padding: 22px; border-radius: 18px; color: var(--text-primary); text-decoration: none; background: rgba(255,255,255,.72); border: 1px solid rgba(72,132,225,.06); transition: var(--transition-smooth); }
.next-links a::after { content: '↗'; position: absolute; top: 18px; right: 18px; color: var(--primary-blue); }
.next-links a:hover { transform: translateY(-3px); border-color: rgba(0,85,255,.22); background: #fff; box-shadow: 0 18px 40px rgba(24,45,100,.08); }
.next-links b,.next-links small { display: block; }
.next-links b { padding-right: 22px; font-family: 'Outfit',sans-serif; font-size: 1rem; }
.next-links small { margin-top: 22px; color: var(--text-secondary); line-height: 1.4; }
.section-title-large { font-family: 'Outfit',sans-serif; font-size: clamp(2rem,4vw,3rem); line-height: 1.05; letter-spacing: -.035em; }
.evidence-badge { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(72,132,225,.07); font-size: .72rem; font-weight: 750; background: #fff; }
.evidence-badge.green { color: #0a8f53; background: #ecfbf4; border-color: #c9efdc; }
.evidence-badge.blue { color: #075fe4; background: #eef5ff; border-color: #d3e4ff; }
.evidence-badge.yellow { color: #a26700; background: #fff8e8; border-color: #f5e2b7; }
.evidence-badge.purple { color: #8230aa; background: #f8effc; border-color: #ead5f4; }
@media (max-width:820px) { .structured-page{padding-top:8px}.structured-hero{padding:32px}.structured-hero h1{font-size:clamp(2.7rem,12vw,4rem)}.purpose-grid{grid-template-columns:minmax(0,1fr)}.purpose-grid>div{min-height:0}.purpose-grid h2{margin-top:20px}.status-panel{gap:30px}.next-links>div{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width:560px) { .structured-hero{padding:24px 20px;border-radius:21px}.structured-hero aside{padding:18px}.structured-actions a{width:100%;text-align:center}.status-panel{padding:24px 20px}.status-panel ol{grid-template-columns:minmax(0,1fr)}.next-links>div{grid-template-columns:minmax(0,1fr)}.next-links a{min-height:108px} }
/* Sitewide professional coverage v6 */
.page-layout { max-width: 1180px; margin: 0 auto; }
.page-layout > section + section, .page-layout > div + section { margin-top: 24px; }
.section-hero { position: relative; overflow: hidden; margin-bottom: 30px; padding: 68px 44px; border-radius: 28px; border: 1px solid rgba(65,96,180,.1); background: linear-gradient(135deg,rgba(255,255,255,.94),rgba(239,245,255,.84)); box-shadow: 0 24px 70px rgba(30,55,120,.075); }
.section-hero::after { content:''; position:absolute; right:-90px; top:-130px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(0,85,255,.14),transparent 70%); }
.section-hero > * { position:relative; z-index:1; }
.section-hero .brand-badge { margin-bottom:18px; }
.section-hero .page-title { max-width: 900px; margin: 0 auto; font-size: clamp(2.8rem,6vw,5rem); line-height:.98; letter-spacing:-.05em; }
.section-hero .page-subtitle { max-width: 760px; margin: 18px auto 0; font-size:1.05rem; line-height:1.65; }
.glass-panel { background:rgba(255,255,255,.82); border-color:rgba(25,45,90,.075); box-shadow:0 14px 42px rgba(25,45,95,.06); }
.main-panel { border-radius:22px; }
.main-panel > .panel-title:first-child { font-size:1.55rem; }
.panel-header { display:flex; align-items:center; justify-content:space-between; gap:14px; padding-bottom:16px; margin-bottom:18px; border-bottom:1px solid rgba(72,132,225,.06); }
.panel-subtitle { display:block; margin-top:6px; color:var(--text-secondary); font-size:.84rem; line-height:1.5; }
.section-centered { max-width:760px; margin-left:auto; margin-right:auto; text-align:center; }
.section-desc-large { margin-top:12px; color:var(--text-secondary); font-size:1.02rem; line-height:1.65; }
.content-section { width:100%; }
.grid-layout { align-items:stretch; }
.grid-layout > .glass-panel { height:100%; }
.cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.text-secondary { color:var(--text-secondary)!important; line-height:1.6; }
.text-center { text-align:center!important; }
.font-bold { font-weight:700!important; }
.font-semibold { font-weight:600!important; }
.font-mono { font-family:'Roboto Mono',monospace!important; }
.text-xs { font-size:.75rem!important; }
.mt-1 { margin-top:4px!important; }.mt-5{margin-top:32px!important}.mb-2{margin-bottom:8px!important}
.w-full{width:100%!important}.p-3{padding:12px!important}.flex-row{display:flex!important;align-items:center;gap:12px}.flex-column{display:flex!important;flex-direction:column}.justify-between{justify-content:space-between!important}
.pill-badge { display:inline-flex; align-items:center; padding:5px 11px; border-radius:999px; color:var(--primary-blue); background:#eef5ff; border:1px solid #d7e6ff; font-size:.72rem; font-weight:750; }
.stat-card { min-height:160px; padding:24px; border-radius:20px; background:rgba(255,255,255,.84); border:1px solid rgba(72,132,225,.055); box-shadow:0 12px 34px rgba(25,45,95,.055); }
.stat-header { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.stat-title { color:var(--text-dim); font-size:.7rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.stat-badge { width:9px; height:9px; border-radius:50%; background:var(--primary-blue); box-shadow:0 0 0 5px rgba(0,85,255,.1); }
.stat-value { margin:22px 0 8px; font:800 2.6rem/1 'Outfit',sans-serif; letter-spacing:-.04em; }
.stat-footer { color:var(--text-secondary); font-size:.8rem; }
.flow-diagram-horizontal { display:grid; grid-template-columns:repeat(auto-fit,minmax(125px,1fr)); gap:10px; margin-top:24px; }
.flow-step { position:relative; min-height:126px; padding:19px; border-radius:16px; background:#f7f9fe; border:1px solid rgba(72,132,225,.055); }
.flow-step-num { display:block; color:var(--primary-blue); font:700 .7rem 'Roboto Mono',monospace; }
.flow-step-label { display:block; margin:18px 0 5px; font-weight:750; }
.flow-step-desc { color:var(--text-secondary); font-size:.76rem; line-height:1.4; }
.comparison-table-wrapper { overflow:hidden; border-radius:22px; }
.comparison-table { width:100%; border-collapse:collapse; }
.comparison-table th { padding:16px 18px; text-align:left; color:var(--text-secondary); background:#f2f6fd; font-size:.75rem; letter-spacing:.05em; text-transform:uppercase; }
.comparison-table td { padding:16px 18px; border-top:1px solid rgba(72,132,225,.055); color:var(--text-secondary); line-height:1.45; }
.comparison-table tbody tr:hover { background:rgba(0,85,255,.025); }
form label { display:block; margin-bottom:6px; color:var(--text-secondary); font-size:.78rem; font-weight:700; }
form input, form select, form textarea { width:100%; padding:12px 14px!important; border:1px solid rgba(20,40,80,.12)!important; border-radius:11px!important; background:rgba(255,255,255,.9)!important; color:var(--text-primary)!important; outline:none; transition:border-color .2s ease,box-shadow .2s ease; }
form input:focus,form select:focus,form textarea:focus { border-color:rgba(0,85,255,.55)!important; box-shadow:0 0 0 4px rgba(0,85,255,.08); }
.cli-terminal { overflow:hidden; border-radius:17px; background:#0b1020; border:1px solid rgba(255,255,255,.08); box-shadow:0 18px 45px rgba(5,12,30,.16); }
.cli-header { display:flex; align-items:center; min-height:42px; padding:10px 15px; color:#a9b4cc; background:#121a2d; border-bottom:1px solid rgba(255,255,255,.07); font:500 .72rem 'Roboto Mono',monospace; }
.cli-output,.cli-comment,.terminal-body { color:#d9e3f7; font:400 .78rem/1.65 'Roboto Mono',monospace; }
.cli-output { padding:18px; }.cli-comment{color:#7f91b2}.status-green{color:#48d697!important}
@media(max-width:1000px){.cols-4{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:820px){.section-hero{padding:44px 28px}.section-hero .page-title{font-size:clamp(2.5rem,10vw,4rem)}.flow-diagram-horizontal{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.section-hero{padding:34px 20px;border-radius:21px}.section-hero .page-title{font-size:clamp(2.25rem,12vw,3.2rem)}.cols-4{grid-template-columns:minmax(0,1fr)}.flow-diagram-horizontal{grid-template-columns:minmax(0,1fr)}.comparison-table-wrapper{overflow-x:auto}.comparison-table{min-width:680px}.panel-header,.flex-row{align-items:flex-start;flex-direction:column}}
/* Homepage product gateway v7 */
.home-v7{max-width:1380px;margin:0 auto}.home-hero{display:grid;grid-template-columns:minmax(0,.9fr) minmax(580px,1.1fr);gap:68px;align-items:center;min-height:680px;padding:52px 0 64px}.home-eyebrow{display:inline-flex;align-items:center;gap:9px;color:var(--text-secondary);font-size:.76rem;font-weight:750;letter-spacing:.04em}.home-eyebrow i,.stage-status i{width:8px;height:8px;border-radius:50%;background:#1eb66d;box-shadow:0 0 0 5px rgba(30,182,109,.1)}.home-hero-copy h1{margin:24px 0;font:850 clamp(3.6rem,6.4vw,6.6rem)/.9 'Outfit',sans-serif;letter-spacing:-.065em}.home-hero-copy h1 em{display:block;color:var(--primary-blue);font-style:normal}.home-hero-copy>p{max-width:650px;color:var(--text-secondary);font-size:1.08rem;line-height:1.72}.home-actions{display:flex;flex-wrap:wrap;gap:11px;margin:30px 0}.home-actions a{display:inline-flex;align-items:center;justify-content:center;gap:22px;padding:13px 19px;border-radius:999px;text-decoration:none;font-size:.86rem;font-weight:750}.home-primary{color:#fff;background:var(--primary-blue);box-shadow:0 12px 28px rgba(0,85,255,.2)}.home-secondary{color:var(--text-primary);background:#fff;border:1px solid rgba(72,132,225,.08)}.home-proof{display:flex;gap:24px;padding-top:26px;border-top:1px solid rgba(72,132,225,.07)}.home-proof span,.home-proof b,.home-proof small{display:block}.home-proof b{font-size:.78rem}.home-proof small{margin-top:4px;color:var(--text-dim);font-size:.68rem}
.os-stage{overflow:hidden;border:1px solid rgba(20,45,100,.14);border-radius:28px;background:#0d1428;color:#fff;box-shadow:0 45px 100px rgba(12,28,65,.24),0 0 0 8px rgba(255,255,255,.8);transform:perspective(1400px) rotateY(-2deg) rotateX(1deg)}.os-stage-top{display:flex;align-items:center;gap:24px;padding:14px 18px;border-bottom:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);font-size:.69rem}.os-wordmark{font-weight:800;margin-right:auto}.os-wordmark span{color:#6aa0ff}.stage-status{display:flex;align-items:center;gap:8px;color:#b8c5df}.stage-status i{width:6px;height:6px;box-shadow:none}.os-stage-top time{color:#8290aa}.os-stage-body{display:grid;grid-template-columns:56px 1fr;min-height:470px}.os-rail{display:flex;flex-direction:column;align-items:center;gap:10px;padding:15px 9px;border-right:1px solid rgba(255,255,255,.07);background:rgba(72,132,225,.12)}.os-rail button{width:36px;height:36px;border:0;border-radius:11px;color:#8796b4;background:transparent;font-weight:800;cursor:pointer}.os-rail button.active{color:#fff;background:#1765ff;box-shadow:0 8px 18px rgba(23,101,255,.32)}.os-rail span{flex:1}.os-workspace{padding:26px}.workspace-heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}.workspace-heading small,.workspace-card small{color:#7383a4;font-size:.62rem;letter-spacing:.12em;font-weight:800}.workspace-heading h2{margin-top:4px;font:700 1.65rem 'Outfit',sans-serif}.workspace-heading button{padding:7px 12px;border:1px solid rgba(255,255,255,.1);border-radius:9px;color:#92a0bb;background:rgba(255,255,255,.04);font-size:.68rem}.workspace-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.workspace-card{min-height:150px;padding:18px;border:1px solid rgba(255,255,255,.08);border-radius:17px;background:rgba(255,255,255,.045)}.workspace-card.primary{background:linear-gradient(145deg,rgba(26,101,255,.18),rgba(255,255,255,.04))}.workspace-card.wide{grid-column:1/-1;min-height:130px}.workspace-card strong{display:block;margin:13px 0;font-size:.94rem}.workspace-card p{color:#91a0bc;font-size:.75rem}.workspace-card button{margin-top:16px;border:0;color:#8db6ff;background:none;font-weight:700}.health-line{display:flex;gap:4px;height:32px;align-items:flex-end}.health-line i{width:20%;border-radius:3px;background:#337dff}.health-line i:nth-child(1){height:35%}.health-line i:nth-child(2){height:66%}.health-line i:nth-child(3){height:48%}.health-line i:nth-child(4){height:82%}.health-line i:nth-child(5){height:58%}.workspace-card footer{display:flex;justify-content:space-between;margin-top:12px;color:#8190ac;font-size:.66rem}.workspace-card footer b,.mini-device b{color:#50d998}.mini-device{display:flex;align-items:center;gap:8px;padding:8px 0;border-top:1px solid rgba(255,255,255,.06);font-size:.68rem}.mini-device i{width:7px;height:7px;border-radius:50%;background:#50d998}.mini-device span{margin-right:auto;color:#aab6cc}.os-stage-caption{display:flex;justify-content:space-between;gap:16px;padding:12px 18px;border-top:1px solid rgba(255,255,255,.07);color:#8090ad;font-size:.62rem}.os-stage-caption span{color:#aab6cc;font-weight:700}
.trust-rail{display:grid;grid-template-columns:1.2fr repeat(4,1fr);align-items:center;border-top:1px solid rgba(72,132,225,.07);border-bottom:1px solid rgba(72,132,225,.07)}.trust-rail>*{padding:20px;border-right:1px solid rgba(72,132,225,.06)}.trust-rail>span{font-size:.67rem;font-weight:800;letter-spacing:.12em}.trust-rail a{color:var(--text-secondary);text-decoration:none;font-size:.73rem}.trust-rail b{color:var(--text-primary);font-size:1rem;margin-right:5px}.home-intro{display:grid;grid-template-columns:1.25fr .75fr;gap:90px;align-items:end;padding:120px 0 48px}.section-kicker{display:block;margin-bottom:20px;color:var(--primary-blue);font-size:.7rem;font-weight:800;letter-spacing:.13em}.home-intro h2,.architecture-copy h2,.evidence-callout h2,.home-final h2{font:780 clamp(2.8rem,5vw,5rem)/.98 'Outfit',sans-serif;letter-spacing:-.05em}.home-intro>p{color:var(--text-secondary);line-height:1.7}
.gateway-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.gateway-card{position:relative;overflow:hidden;min-height:380px;padding:34px;border:1px solid rgba(20,40,80,.075);border-radius:25px;color:var(--text-primary);text-decoration:none;background:rgba(255,255,255,.82);box-shadow:0 18px 55px rgba(20,45,100,.055);transition:transform .3s ease,box-shadow .3s ease}.gateway-card:hover{transform:translateY(-5px);box-shadow:0 28px 70px rgba(20,45,100,.11)}.gateway-card>span{color:var(--primary-blue);font-size:.66rem;font-weight:800;letter-spacing:.12em}.gateway-card h3{margin:18px 0 10px;font:750 2.2rem 'Outfit',sans-serif}.gateway-card p{max-width:520px;color:var(--text-secondary);line-height:1.6}.gateway-card>b{position:absolute;left:34px;bottom:30px;font-size:.78rem}.gateway-card.feature{grid-row:span 2;min-height:776px}.gateway-card.dark{color:#fff;background:linear-gradient(145deg,#0d1428,#17284e)}.gateway-card.dark p{color:#9caac4}.gateway-card.wide{grid-column:1/-1;min-height:300px;background:linear-gradient(120deg,#eef4ff,#fff)}.gateway-card code{display:block;margin-top:35px;padding:18px;border-radius:13px;color:#b9c9e7;background:#10182b;font-size:.8rem}.gateway-visual.living{position:absolute;left:34px;right:34px;top:240px;bottom:88px;border-radius:22px;background:linear-gradient(145deg,#dce8ff,#f7f9ff);border:1px solid #d5e2fa}.gateway-visual i{position:absolute;border-radius:14px;background:#fff;box-shadow:0 15px 35px rgba(34,60,120,.12)}.gateway-visual i:nth-child(1){left:8%;top:10%;width:56%;height:40%}.gateway-visual i:nth-child(2){right:8%;top:18%;width:28%;height:58%}.gateway-visual i:nth-child(3){left:14%;bottom:8%;width:46%;height:30%}.gateway-flow{display:flex;align-items:center;justify-content:center;gap:20px;height:145px}.gateway-flow i{width:20px;height:20px;border:5px solid #d9e6ff;border-radius:50%;background:#1765ff;box-shadow:0 0 0 1px #b8d0ff}.shield-orbit{position:relative;width:135px;height:135px;margin:34px auto;border:1px solid rgba(121,166,255,.35);border-radius:50%;display:grid;place-items:center}.shield-orbit::before,.shield-orbit::after{content:'';position:absolute;border:1px solid rgba(121,166,255,.16);border-radius:50%}.shield-orbit::before{inset:-20px}.shield-orbit::after{inset:20px}.shield-orbit i{width:14px;height:14px;border-radius:50%;background:#4f8dff;box-shadow:0 0 22px #4f8dff}.shield-orbit span{position:absolute;bottom:28px;font-size:.56rem;letter-spacing:.15em}.device-row{display:flex;justify-content:center;gap:14px;margin-top:45px}.device-row i{display:grid;place-items:center;width:60px;height:60px;border:1px solid #dfe7f6;border-radius:18px;background:#f8faff;font-style:normal;font-size:1.25rem}
.architecture-story{display:grid;grid-template-columns:.75fr 1.25fr;gap:90px;align-items:center;margin:120px 0;padding:72px;border-radius:30px;background:#fff;border:1px solid rgba(72,132,225,.06);box-shadow:0 30px 85px rgba(25,45,90,.08)}.architecture-copy h2 em{color:var(--primary-blue);font-style:normal}.architecture-copy p{margin:24px 0;color:var(--text-secondary);line-height:1.7}.architecture-copy a,.evidence-callout a{color:var(--primary-blue);text-decoration:none;font-weight:750}.stack-visual{display:flex;flex-direction:column;gap:7px}.stack-visual div{display:flex;justify-content:space-between;gap:20px;padding:16px 20px;border:1px solid rgba(72,132,225,.06);border-radius:12px;background:#f8faff}.stack-visual small{color:var(--text-dim);font-size:.6rem;letter-spacing:.1em}.stack-visual b{font-size:.78rem}.stack-visual .core{color:#fff;background:#1765ff;border-color:#1765ff}.stack-visual .core small{color:#caddff}.evidence-callout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:end;padding:78px;border-radius:30px;color:#fff;background:linear-gradient(135deg,#0d1428,#152a55)}.evidence-callout p{max-width:600px;margin:22px 0;color:#a8b4ca;line-height:1.7}.evidence-callout a{color:#8db6ff}.evidence-numbers{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.evidence-numbers span{padding:22px;border:1px solid rgba(255,255,255,.09);border-radius:17px;background:rgba(255,255,255,.04)}.evidence-numbers b,.evidence-numbers small{display:block}.evidence-numbers b{font:750 2.5rem 'Outfit',sans-serif}.evidence-numbers small{margin-top:8px;color:#91a0bc;font-size:.68rem}.home-final{text-align:center;padding:130px 20px 80px}.home-final>span{color:var(--primary-blue);font-size:.7rem;font-weight:800;letter-spacing:.15em}.home-final h2{max-width:900px;margin:22px auto}.home-final p{max-width:650px;margin:0 auto;color:var(--text-secondary);line-height:1.7}.home-final div{display:flex;justify-content:center;gap:10px;margin-top:28px}.home-final a{padding:12px 18px;border-radius:999px;color:#fff;background:var(--primary-blue);text-decoration:none;font-weight:700}.home-final a+a{color:var(--text-primary);background:#fff;border:1px solid rgba(72,132,225,.08)}
@media(max-width:1100px){.home-hero{grid-template-columns:1fr;gap:48px}.home-hero-copy{max-width:850px}.os-stage{transform:none}.trust-rail{grid-template-columns:repeat(2,1fr)}.trust-rail>span{grid-column:1/-1}.home-intro,.architecture-story,.evidence-callout{grid-template-columns:1fr}.gateway-card.feature{grid-row:auto;min-height:560px}}
@media(max-width:720px){.home-hero{min-height:0;padding:40px 0}.home-hero-copy h1{font-size:clamp(3rem,15vw,4.8rem)}.home-proof{flex-wrap:wrap}.os-stage-body{grid-template-columns:44px 1fr;min-height:430px}.os-workspace{padding:17px}.workspace-grid{grid-template-columns:1fr}.workspace-card:nth-child(2){display:none}.workspace-card.wide{grid-column:auto}.os-stage-caption{display:block}.os-stage-caption small{display:block;margin-top:4px}.trust-rail{grid-template-columns:1fr}.trust-rail>*{border-right:0;border-bottom:1px solid rgba(72,132,225,.06)}.home-intro{gap:24px;padding:80px 0 35px}.gateway-grid{grid-template-columns:1fr}.gateway-card.feature,.gateway-card{min-height:480px}.gateway-card.wide{grid-column:auto}.architecture-story,.evidence-callout{gap:42px;margin:80px 0;padding:34px 22px}.evidence-numbers{grid-template-columns:1fr}.home-final{padding:80px 0 40px}.home-final div{flex-direction:column}.home-final a{width:100%}}
/* Cinematic redesign v8 */
.cinematic-home{max-width:1380px;margin:auto}.living-opening{display:grid;grid-template-columns:minmax(0,.9fr) minmax(560px,1.1fr);gap:74px;align-items:center;min-height:720px;padding:54px 0 80px}.living-eyebrow,.story-index{display:block;color:#1765ff;font-size:.68rem;font-weight:800;letter-spacing:.13em}.living-copy h1{margin:24px 0;font:820 clamp(3.6rem,6.5vw,6.7rem)/.91 'Outfit',sans-serif;letter-spacing:-.065em}.living-copy h1 em{color:#1765ff;font-style:normal}.living-copy>p{max-width:650px;color:var(--text-secondary);font-size:1.06rem;line-height:1.72}.living-actions{display:flex;gap:10px;margin:30px 0 16px}.living-actions a,.immersive-final a{padding:13px 19px;border-radius:999px;color:#fff;background:#1765ff;text-decoration:none;font-size:.84rem;font-weight:750}.living-actions a+a,.immersive-final a+a{color:var(--text-primary);background:#fff;border:1px solid rgba(72,132,225,.08)}.progress-link{color:var(--text-secondary);font-size:.76rem;text-decoration:none}.living-hero{position:relative;min-height:590px;margin:0;overflow:hidden;border-radius:46% 54% 44% 56%/45% 42% 58% 55%;border:1px solid rgba(70,105,210,.12);background:linear-gradient(145deg,#fff,#edf7ff 48%,#f5efff);box-shadow:0 40px 100px rgba(45,70,140,.13)}.living-hero canvas{position:absolute;inset:0;width:100%;height:100%}.living-fallback{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none}.living-fallback span,.living-fallback i{position:absolute;border-radius:50%;border:1px solid rgba(70,110,220,.15)}.living-fallback span{width:46%;aspect-ratio:1}.living-fallback i{width:65%;aspect-ratio:1}.living-fallback b{color:rgba(20,40,80,.42);font-size:.7rem;letter-spacing:.12em}.living-hero figcaption{position:absolute;left:9%;right:9%;bottom:7%;display:flex;justify-content:space-between;align-items:center;padding:10px 13px;border:1px solid rgba(255,255,255,.75);border-radius:999px;background:rgba(255,255,255,.55);backdrop-filter:blur(18px);font-size:.66rem;color:#64708a}.living-hero figcaption button{border:0;background:none;color:#405070;font-size:.66rem;cursor:pointer}
.intent-moment,.memory-story,.adaptive-story,.creator-story,.free-story{display:grid;grid-template-columns:.85fr 1.15fr;gap:100px;align-items:center;padding:125px 5%}.intent-moment h2,.preview-copy h2,.memory-story h2,.workplace-story h2,.adaptive-story h2,.foundation-story h2,.creator-story h2,.real-evidence h2,.free-story h2,.future-story h2,.immersive-final h2{margin:19px 0;font:780 clamp(2.8rem,5vw,5.2rem)/.98 'Outfit',sans-serif;letter-spacing:-.052em}.intent-moment h2 em{color:#1765ff;font-style:normal}.intent-moment p,.preview-copy p,.memory-story p,.workplace-story p,.adaptive-story p,.foundation-story p,.creator-story p,.real-evidence p,.free-story p{color:var(--text-secondary);line-height:1.7}.intent-orbit{position:relative;display:grid;place-items:center;width:min(420px,80vw);aspect-ratio:1;margin:auto;border:1px solid rgba(80,110,220,.13);border-radius:50%;background:radial-gradient(circle,#fff 0 11%,#edf7ff 12% 13%,transparent 14%)}.intent-orbit::before,.intent-orbit::after{content:'';position:absolute;inset:16%;border:1px solid rgba(95,110,230,.14);border-radius:48% 52% 55% 45%;transform:rotate(23deg)}.intent-orbit::after{inset:31%;transform:rotate(-35deg)}.intent-orbit i{position:absolute;width:18px;height:18px;border-radius:50%;background:#6a7cff;box-shadow:0 0 30px #8aa4ff}.intent-orbit i:nth-child(1){left:13%;top:36%}.intent-orbit i:nth-child(2){right:18%;top:22%;background:#51d7ce}.intent-orbit i:nth-child(3){right:26%;bottom:15%;background:#ba83ff}.intent-orbit span{font-weight:750}.intent-input{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:30px 0 18px;padding:16px 18px;border:1px solid rgba(30,60,130,.11);border-radius:18px;background:rgba(255,255,255,.78)}.intent-input span{font-weight:650}.intent-input button{flex:none;padding:8px 11px;border:0;border-radius:999px;color:#1765ff;background:#edf4ff;font-size:.7rem}
.preview-story{display:grid;grid-template-columns:.65fr 1.35fr;gap:70px;align-items:center;padding:90px 0 130px}.preview-tabs{display:flex;gap:7px;margin:25px 0}.preview-tabs button{padding:8px 13px;border:1px solid rgba(72,132,225,.08);border-radius:999px;background:#fff}.preview-tabs button.active{color:#fff;background:#1765ff}.preview-copy small{color:var(--text-dim)}.living-desktop{position:relative;overflow:hidden;min-height:560px;border:8px solid rgba(255,255,255,.86);border-radius:32px;background:linear-gradient(145deg,#eaf4ff,#f8f4ff);box-shadow:0 45px 100px rgba(35,60,125,.18)}.desktop-glow{position:absolute;width:420px;height:420px;right:-120px;top:-170px;border-radius:50%;background:radial-gradient(circle,rgba(104,130,255,.3),transparent 70%)}.living-desktop>header{position:relative;display:flex;justify-content:space-between;padding:17px 21px;border-bottom:1px solid rgba(72,132,225,.06);font-size:.7rem}.living-desktop>header span{color:var(--text-secondary)}.living-desktop main{position:relative;display:grid;grid-template-columns:42px 1.35fr .65fr;gap:12px;padding:18px}.living-desktop aside{display:flex;flex-direction:column;gap:8px}.living-desktop aside i{height:34px;border-radius:11px;background:rgba(255,255,255,.8)}.fluid-pane{min-height:170px;padding:22px;border:1px solid rgba(255,255,255,.8);border-radius:21px;background:rgba(255,255,255,.55);backdrop-filter:blur(18px)}.fluid-pane.large{grid-row:span 2;min-height:450px}.fluid-pane small{color:#68748d;font-size:.6rem;letter-spacing:.12em}.fluid-pane h3{margin-top:80px;font:700 2.5rem/1 'Outfit',sans-serif}.liquid-line{display:block;width:72%;height:9px;margin-top:40px;border-radius:999px;background:linear-gradient(90deg,#1765ff,#55d8d0,#b27cff)}.fluid-pane.assistant{align-self:end}.fluid-pane p{margin:18px 0;color:var(--text-secondary);font-size:.78rem}.fluid-pane button{border:0;color:#1765ff;background:none;font-weight:700}
.memory-story{border-radius:36px;background:linear-gradient(145deg,#fff,#f3f8ff);border:1px solid rgba(72,132,225,.05)}.memory-story a,.adaptive-story a,.creator-story a,.real-evidence a,.free-story a{color:#1765ff;text-decoration:none;font-weight:750}.memory-field{position:relative;min-height:480px}.memory-field::before,.memory-field::after{content:'';position:absolute;inset:10%;border:1px solid rgba(75,110,220,.13);border-radius:50%}.memory-field::after{inset:24%;transform:rotate(40deg)}.memory-core,.memory-field i{position:absolute;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.82);border:1px solid rgba(70,110,220,.15);box-shadow:0 15px 40px rgba(40,65,130,.1)}.memory-core{left:42%;top:38%;width:110px;height:110px;color:#1765ff;font-weight:800}.memory-field i{left:var(--x);top:var(--y);width:76px;height:76px;font-style:normal;font-size:.7rem}.workplace-story{padding:130px 0}.workplace-heading{max-width:780px}.place-track{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:55px;border-top:1px solid rgba(72,132,225,.08);border-bottom:1px solid rgba(72,132,225,.08)}.place-track button{min-height:230px;padding:28px;text-align:left;border:0;border-right:1px solid rgba(72,132,225,.07);background:transparent;transition:.3s}.place-track button.active{background:linear-gradient(145deg,#edf5ff,#fff)}.place-track small,.place-track b,.place-track span{display:block}.place-track small{color:#1765ff}.place-track b{margin:65px 0 10px;font:700 1.7rem 'Outfit',sans-serif}.place-track span{color:var(--text-secondary)}.adaptive-story{grid-template-columns:1.2fr .8fr}.adaptive-sculpture{position:relative;min-height:530px;perspective:900px}.adaptive-sculpture span{position:absolute;inset:12%;border:1px solid rgba(65,105,220,.16);border-radius:35% 65% 60% 40%;background:linear-gradient(145deg,rgba(255,255,255,.82),rgba(220,239,255,.45));box-shadow:inset 0 0 40px rgba(255,255,255,.8);transform:rotate(-12deg)}.adaptive-sculpture span:nth-child(2){inset:22% 8% 8% 28%;transform:rotate(13deg);background:rgba(237,228,255,.48)}.adaptive-sculpture span:nth-child(3){inset:34% 30% 20% 17%;transform:rotate(-28deg);background:rgba(218,251,247,.56)}
.foundation-story{display:grid;grid-template-columns:1fr 1fr;margin:90px 0;border-radius:34px;overflow:hidden;border:1px solid rgba(72,132,225,.06)}.foundation-story article{min-height:520px;padding:64px;display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(155deg,#f7fbff,#eaf5ff)}.foundation-story article+article{border-left:1px solid rgba(72,132,225,.06);background:linear-gradient(155deg,#fbf8ff,#f1ebff)}.foundation-story a{color:#1765ff;text-decoration:none;font-weight:700}.creator-story{margin:120px 0;border-radius:34px;color:#fff;background:linear-gradient(135deg,#10172a,#172b56)}.creator-story p{color:#aeb9ce}.creator-story a{color:#91b9ff}.creation-path{display:flex;align-items:center;gap:12px}.creation-path span{padding:14px;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(255,255,255,.05);font-size:.72rem}.creation-path i{flex:1;height:1px;background:linear-gradient(90deg,#557cff,#55d8d0)}
.real-evidence{display:grid;grid-template-columns:.8fr 1.2fr;gap:100px;align-items:center;padding:130px 0}.milestone-window{overflow:hidden;border:1px solid rgba(30,55,110,.09);border-radius:25px;background:#fff;box-shadow:0 30px 75px rgba(30,55,110,.1)}.milestone-window header{display:flex;justify-content:space-between;padding:18px 22px;background:#f4f7fc;font-size:.7rem}.milestone-window header i{display:inline-block;width:7px;height:7px;border-radius:50%;background:#35bf78}.milestone-window ol{list-style:none;padding:8px 22px}.milestone-window li{position:relative;padding:18px 20px 18px 34px;border-bottom:1px solid rgba(72,132,225,.055)}.milestone-window li::before{content:'';position:absolute;left:5px;top:23px;width:10px;height:10px;border-radius:50%;border:2px solid #9aa7bd}.milestone-window li.done::before{border-color:#35bf78;background:#35bf78}.milestone-window b,.milestone-window small{display:block}.milestone-window small{margin-top:5px;color:var(--text-secondary)}.milestone-window details{padding:18px 22px}.milestone-window summary{cursor:pointer;font-weight:700}.milestone-window details p{margin-top:12px;font-size:.82rem}.free-story{border-radius:35px;background:linear-gradient(135deg,#eef8ff,#fff8ef)}.free-orb{display:grid;place-items:center;width:320px;aspect-ratio:1;margin:auto;border-radius:50%;color:#1765ff;background:radial-gradient(circle at 35% 30%,#fff,#dfefff 55%,#d8cffd);box-shadow:0 35px 80px rgba(45,80,150,.18);font:800 4rem 'Outfit',sans-serif}.future-story{text-align:center;padding:150px 0}.future-path{display:flex;align-items:center;justify-content:center;gap:15px;margin-top:55px}.future-path span{font-weight:700}.future-path i{width:55px;height:1px;background:linear-gradient(90deg,#1765ff,#75ddd4)}.immersive-final{position:relative;overflow:hidden;text-align:center;padding:150px 30px;border-radius:40px;background:#fff;border:1px solid rgba(72,132,225,.06)}.final-light{position:absolute;left:20%;right:20%;top:-180px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(96,138,255,.28),transparent 68%)}.immersive-final>*:not(.final-light){position:relative}.immersive-final>span{color:#1765ff;font-size:.7rem;letter-spacing:.15em;font-weight:800}.immersive-final h2{max-width:950px;margin:25px auto}.immersive-final div:last-child{display:flex;justify-content:center;gap:10px}
@media(max-width:1050px){.living-opening,.intent-moment,.preview-story,.memory-story,.adaptive-story,.creator-story,.real-evidence,.free-story{grid-template-columns:1fr}.living-hero{min-height:540px}.preview-copy{max-width:720px}.foundation-story{grid-template-columns:1fr}.foundation-story article+article{border-left:0;border-top:1px solid rgba(72,132,225,.06)}.real-evidence{gap:50px}}
@media(max-width:700px){.living-opening{min-height:0;padding:40px 0}.living-copy h1{font-size:clamp(3rem,15vw,4.8rem)}.living-actions,.immersive-final div:last-child{flex-direction:column}.living-actions a,.immersive-final a{width:100%;text-align:center}.living-hero{min-height:430px;border-radius:30px}.intent-moment,.memory-story,.adaptive-story,.creator-story,.free-story{padding:75px 20px;gap:45px}.preview-story,.real-evidence{padding:80px 0;gap:45px}.living-desktop{min-height:470px}.living-desktop main{grid-template-columns:35px 1fr}.fluid-pane.large{min-height:380px}.fluid-pane:not(.large){display:none}.place-track{grid-template-columns:1fr}.place-track button{min-height:150px;border-right:0;border-bottom:1px solid rgba(72,132,225,.06)}.place-track button b{margin-top:30px}.foundation-story article{min-height:420px;padding:35px 22px}.creation-path,.future-path{flex-wrap:wrap}.creation-path i,.future-path i{width:24px;flex:none}.free-orb{width:230px}.future-story{padding:95px 0}.immersive-final{padding:100px 20px;border-radius:28px}}
@media(prefers-reduced-motion:reduce){.living-hero canvas{display:none}.gateway-card,.purpose-grid>div{transition:none!important}.adaptive-sculpture span{transform:none!important}}
/* Why living page */
.why-manifesto{max-width:1000px;padding:105px 5%}.why-manifesto>span,.why-invitation span{color:#1765ff;font-size:.68rem;font-weight:800;letter-spacing:.13em}.why-manifesto h2{margin:22px 0;font:780 clamp(3rem,5.5vw,5.6rem)/.98 'Outfit',sans-serif;letter-spacing:-.055em}.why-manifesto p{max-width:760px;color:var(--text-secondary);font-size:1.04rem;line-height:1.75}.why-principles{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid rgba(72,132,225,.07);border-left:1px solid rgba(72,132,225,.07)}.why-principles article{min-height:280px;padding:42px;border-right:1px solid rgba(72,132,225,.07);border-bottom:1px solid rgba(72,132,225,.07);background:rgba(255,255,255,.55)}.why-principles small{color:#1765ff}.why-principles h3{margin:55px 0 12px;font:720 1.8rem/1.05 'Outfit',sans-serif}.why-principles p{color:var(--text-secondary);line-height:1.65}.why-invitation{display:flex;align-items:flex-end;justify-content:space-between;gap:50px;margin:100px 0;padding:65px;border-radius:32px;background:linear-gradient(145deg,#fff,#eef6ff);border:1px solid rgba(72,132,225,.06)}.why-invitation h2{max-width:700px;margin-top:20px;font:760 clamp(2.6rem,4vw,4.3rem)/1 'Outfit',sans-serif;letter-spacing:-.05em}.why-invitation div:last-child{display:flex;flex-direction:column;gap:12px}.why-invitation a{color:#1765ff;text-decoration:none;font-weight:750}@media(max-width:700px){.why-manifesto{padding:70px 10px}.why-principles{grid-template-columns:1fr}.why-principles article{min-height:220px;padding:28px}.why-principles h3{margin-top:35px}.why-invitation{align-items:flex-start;flex-direction:column;padding:35px 22px}}
/* Intelligence portal */
.intelligence-switch{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center;padding:110px 5%}.intelligence-switch h2{margin:20px 0;font:780 clamp(3rem,5vw,5rem)/1 'Outfit',sans-serif;letter-spacing:-.05em}.intelligence-switch p{color:var(--text-secondary);line-height:1.7}.intelligence-switch>div>div{display:flex;gap:8px;margin-top:28px}.intelligence-switch button{padding:9px 14px;border:1px solid rgba(72,132,225,.08);border-radius:999px;background:#fff}.intelligence-switch button.active{color:#fff;background:#1765ff}.intelligence-form{position:relative;min-height:480px;border:1px solid rgba(60,100,220,.12);border-radius:50%;background:radial-gradient(circle,#fff,#e9f6ff 50%,#f4edff);display:grid;place-items:center}.intelligence-form::before,.intelligence-form::after{content:'';position:absolute;inset:16%;border:1px solid rgba(80,110,220,.16);border-radius:45% 55%}.intelligence-form::after{inset:30%;transform:rotate(45deg)}.intelligence-form i{position:absolute;width:22px;height:22px;border-radius:50%;background:#1765ff;box-shadow:0 0 30px #7aa4ff}.intelligence-form i:nth-child(1){left:16%;top:35%}.intelligence-form i:nth-child(2){right:18%;top:22%;background:#54dacf}.intelligence-form i:nth-child(3){right:27%;bottom:15%;background:#ae78ff}.intelligence-form span{font-weight:800;text-transform:capitalize}@media(max-width:760px){.intelligence-switch{grid-template-columns:1fr;padding:75px 10px}.intelligence-form{min-height:380px}}
/* Portal completion v9 */
.nav-links{gap:0}.nav-mega>.nav-item{padding:.6rem .45rem;font-size:.78rem;white-space:nowrap}.mega-panel{width:min(820px,88vw);grid-template-columns:1.2fr 1fr 1fr;text-align:left}.mega-panel p{font-size:.8rem;line-height:1.55;color:var(--text-secondary);margin:.55rem 0 1rem}.mega-panel .mega-intro{padding:1.15rem;border-radius:15px;background:linear-gradient(145deg,#f2f7ff,#faf8ff)}.mega-panel .mega-intro small,.mega-panel em{font-size:.64rem;letter-spacing:.1em;color:#1468ff;font-style:normal}.mega-panel section:not(.mega-intro){padding:.9rem .4rem}
.portal-detail,.product-overview{max-width:1280px;margin:0 auto;padding:4rem 28px 7rem}.portal-detail-hero,.product-hero{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.7fr);gap:4rem;align-items:center;min-height:500px}.portal-kicker,.section-intro>span,.portal-flow>div>span,.portal-trust>div>span,.architecture-explorer>div>span,.availability-band span{font-size:.7rem;letter-spacing:.14em;font-weight:700;color:#1468ff}.portal-detail-hero h1,.product-hero h1{font-size:clamp(3.2rem,6vw,6.8rem);line-height:.91;letter-spacing:-.065em;margin:1.15rem 0 1.5rem}.portal-detail-hero>div>p,.product-hero>div>p{font-size:1.2rem;line-height:1.65;max-width:760px;color:var(--text-secondary)}.portal-detail-hero aside{padding:2rem;border:1px solid #dce6fa;border-radius:26px;background:linear-gradient(145deg,#fff,#eef5ff);box-shadow:0 28px 70px rgba(43,76,140,.12)}.portal-detail-hero aside strong{display:block;font-size:1.3rem;margin:.75rem 0}.status-live{margin-top:1.2rem;font-size:.78rem;font-weight:700}.status-live i,.progress-gateway i{display:inline-block;width:8px;height:8px;border-radius:50%;background:#38c98b;box-shadow:0 0 0 6px rgba(56,201,139,.12);margin-right:.65rem}
.portal-capabilities,.native-foundation{padding:6rem 0}.section-intro{max-width:760px}.section-intro h2,.portal-flow h2,.portal-trust h2,.architecture-explorer h2,.availability-band h2{font-size:clamp(2.3rem,4vw,4.5rem);line-height:1;letter-spacing:-.05em;margin:1rem 0}.capability-rail,.native-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;margin-top:3rem;border:1px solid #dfe7f5;border-radius:24px;overflow:hidden;background:#dfe7f5}.capability-rail article,.native-grid article{background:#fff;padding:2rem;min-height:220px}.capability-rail h3{font-size:1.2rem;margin:3rem 0 .8rem}.capability-rail p{font-size:.88rem;line-height:1.6;color:var(--text-secondary)}.native-grid article{min-height:130px;display:flex;flex-direction:column;justify-content:space-between}.portal-flow,.architecture-explorer{display:grid;grid-template-columns:.8fr 1.2fr;gap:5rem;padding:6rem 0;border-top:1px solid #e4e9f3}.portal-flow ol,.architecture-explorer ol{list-style:none;margin:0;padding:0}.portal-flow li,.architecture-explorer button{display:grid;grid-template-columns:42px 1fr auto;gap:1rem;align-items:center;padding:1.25rem;border:0;border-bottom:1px solid #e2e8f3;background:#fff;width:100%;text-align:left}.portal-flow li i,.architecture-explorer button i{font-style:normal;color:#1468ff}.portal-trust{padding:3rem;border-radius:30px;background:#071126;color:#fff;display:grid;grid-template-columns:1fr 1.2fr;gap:2rem}.portal-trust p{color:#aebbd0}.trust-levels{display:flex;flex-wrap:wrap;gap:.6rem;align-content:center}.trust-levels span{padding:.65rem .9rem;border:1px solid #34405a;border-radius:999px;color:#8c99af}.trust-levels .active{color:#b9eaff;border-color:#1a93c6;background:#0b3046}.portal-trust>a{color:#fff;text-decoration:none}
.product-orbit{height:390px;position:relative;display:grid;place-items:center;border-radius:50%;background:radial-gradient(circle,#fff 0 10%,#e6f3ff 11% 26%,transparent 27%),conic-gradient(#e6efff,#f7edff,#e8fbff,#e6efff)}.product-orbit b{font-size:4rem;color:#1468ff}.product-orbit span{position:absolute;top:8%;font-weight:700}.product-orbit i{position:absolute;width:75%;height:75%;border:1px solid rgba(20,104,255,.18);border-radius:50%}.product-orbit i:nth-of-type(2){width:55%;height:55%}.product-orbit i:nth-of-type(3){width:35%;height:35%}.layer-detail{padding:1.5rem;margin-top:2rem;border-left:3px solid #1468ff;background:#f4f8ff}.layer-detail strong{display:block;font-size:1.5rem;margin:.6rem 0}.architecture-explorer button{margin:.4rem 0;border:1px solid #dfe7f5;border-radius:16px}.architecture-explorer button.active{border-color:#1468ff;box-shadow:0 12px 35px rgba(20,104,255,.13)}.edition-explorer{padding:5rem 0}.edition-tabs{display:flex;gap:.5rem;margin:2rem 0}.edition-tabs button{padding:.75rem 1.2rem;border:1px solid #dae3f3;background:#fff;border-radius:999px}.edition-tabs button.active{background:#071126;color:#fff}.edition-stage{padding:2.5rem;border-radius:26px;background:linear-gradient(135deg,#eff6ff,#f7f0ff);display:flex;justify-content:space-between;align-items:end;gap:2rem}.edition-stage h3{max-width:700px;font-size:1.8rem}.edition-stage a,.availability-band a{color:#075fea;font-weight:700;text-decoration:none}.availability-band{padding:3rem;border-block:1px solid #dfe7f5;display:grid;grid-template-columns:1fr 1fr;gap:3rem}.availability-band>div:last-child{display:grid;gap:.8rem;align-content:center}
.portal-gateway,.edition-gateway,.progress-gateway{max-width:1220px;margin:7rem auto;padding:0 2rem}.gateway-heading{max-width:760px}.gateway-heading h2,.edition-gateway h2{font-size:clamp(2.6rem,5vw,5rem);line-height:.95;letter-spacing:-.055em}.gateway-heading p{font-size:1.05rem;color:var(--text-secondary)}.gateway-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:3rem}.gateway-grid a{min-height:210px;padding:1.7rem;border:1px solid #dde6f5;border-radius:22px;background:#fff;display:flex;flex-direction:column;text-decoration:none;color:#101828;transition:.3s}.gateway-grid a:hover{transform:translateY(-6px);box-shadow:0 24px 50px rgba(35,70,130,.12)}.gateway-grid small,.edition-gateway small{color:#1468ff;font-weight:700;letter-spacing:.1em}.gateway-grid b{font-size:1.35rem;margin-top:auto}.gateway-grid span{margin-top:.7rem;color:var(--text-secondary);font-size:.85rem}.edition-gateway{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:1rem}.edition-gateway article{padding:2rem;border-radius:24px;background:#fff;border:1px solid #dfe7f5;display:flex;flex-direction:column;gap:1rem}.edition-gateway article a{margin-top:auto;color:#075fea;text-decoration:none;font-weight:700}.progress-gateway{padding:2rem;border-radius:20px;background:#071126;color:#fff;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:2rem}.progress-gateway a{color:#aee8ff;text-decoration:none;font-weight:700}
@media(max-width:1100px){.portal-detail-hero,.product-hero,.architecture-explorer{grid-template-columns:1fr}.capability-rail,.native-grid{grid-template-columns:repeat(2,1fr)}.gateway-grid{grid-template-columns:repeat(2,1fr)}.edition-gateway{grid-template-columns:1fr 1fr}.edition-gateway>div{grid-column:1/-1}.progress-gateway{grid-template-columns:1fr}}
@media(max-width:700px){.portal-detail,.product-overview{padding:2rem 18px 5rem}.portal-detail-hero,.product-hero{min-height:auto;gap:2rem;padding:3rem 0}.portal-detail-hero h1,.product-hero h1{font-size:3.25rem}.capability-rail,.native-grid,.gateway-grid,.edition-gateway{grid-template-columns:1fr}.portal-flow,.portal-trust,.availability-band,.architecture-explorer{grid-template-columns:1fr;gap:2rem}.portal-trust{padding:1.5rem}.edition-stage{align-items:flex-start;flex-direction:column}.portal-gateway,.edition-gateway,.progress-gateway{margin:4rem auto;padding-left:1rem;padding-right:1rem}.product-orbit{height:300px}}
/* Living experience v10 */
:root{--text-primary:#14213a;--text-secondary:#5c6b82;--font-display:Inter,ui-sans-serif,BlinkMacSystemFont,"Segoe UI",sans-serif;--font-body:Inter,ui-sans-serif,BlinkMacSystemFont,"Segoe UI",sans-serif}html{scroll-behavior:smooth}body{font-family:var(--font-body);font-size:17px;font-weight:400;color:var(--text-primary)}h1,h2,h3,.logo-text{font-family:var(--font-display);font-weight:600!important}.living-copy h1{font-size:clamp(4rem,6vw,4.75rem);font-weight:600!important;line-height:.96;letter-spacing:-.055em}.intent-moment h2,.preview-copy h2,.memory-story h2,.workplace-story h2,.adaptive-story h2,.foundation-story h2,.creator-story h2,.real-evidence h2,.free-story h2,.future-story h2,.immersive-final h2,.gateway-heading h2,.edition-gateway h2{font-size:clamp(2.65rem,4.5vw,3.5rem);font-weight:600!important;line-height:1.04}.living-copy>p,.intent-moment p,.preview-copy p,.memory-story p,.workplace-story p,.adaptive-story p,.foundation-story p,.creator-story p,.real-evidence p,.free-story p{font-size:clamp(1rem,1.4vw,1.16rem);line-height:1.65}.story-index,.living-eyebrow{font-size:.78rem}.header{transition:background .35s,box-shadow .35s,transform .35s}.header.is-condensed{background:rgba(255,255,255,.88);box-shadow:0 10px 35px rgba(30,55,100,.08);backdrop-filter:blur(18px)}.logo-mark{transition:transform .25s ease}.living-actions a,.structured-actions a,.immersive-final a,.nav-btn{transition:transform .18s ease,box-shadow .25s ease,background .25s ease}.five-proof{display:flex;align-items:center;justify-content:center;gap:1.2rem;max-width:1140px;margin:0 auto;padding:1.5rem 2rem;border-block:1px solid rgba(40,70,130,.1);font-size:clamp(1rem,1.7vw,1.25rem);color:#35445d}.five-proof i{width:46px;height:1px;background:linear-gradient(90deg,#1765ff,#65dccc)}.intent-choices{display:flex;flex-wrap:wrap;gap:.55rem;margin:1.5rem 0}.intent-choices button{padding:.65rem .9rem;border:1px solid #dce5f4;border-radius:999px;background:#fff;color:#40516c;cursor:pointer;transition:.2s}.intent-choices button:hover{color:#075fea;border-color:#80a9f3;transform:translateY(-2px)}.intent-input b{color:#1765ff;font-size:.8rem}.gateway-grid a,.capability-rail article,.native-grid article,.glass-panel{position:relative;isolation:isolate;overflow:hidden}.gateway-grid a:before,.capability-rail article:before,.native-grid article:before,.glass-panel:before{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(260px circle at var(--mx,-100px) var(--my,-100px),rgba(100,155,255,.16),transparent 65%);opacity:0;transition:opacity .25s}.gateway-grid a:hover:before,.capability-rail article:hover:before,.native-grid article:hover:before,.glass-panel:hover:before{opacity:1}.reveal-ready{opacity:0;transform:translateY(24px);transition:opacity .75s ease,transform .75s cubic-bezier(.2,.75,.25,1)}.reveal-ready.is-visible{opacity:1;transform:none}.final-living-world{position:absolute;inset:0;margin:0;opacity:.72}.final-living-world canvas{width:100%;height:100%}.immersive-final>p{position:relative;color:var(--text-secondary);font-size:1.1rem}.immersive-final:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.75),rgba(255,255,255,.22),rgba(255,255,255,.75));pointer-events:none}.immersive-final>*:not(.final-living-world){z-index:2}.final-living-world{z-index:0}
@media(max-width:700px){body{font-size:16px}.living-copy h1{font-size:clamp(3.2rem,14vw,4.4rem)}.five-proof{align-items:flex-start;flex-direction:column;gap:.75rem}.five-proof i{width:1px;height:24px;margin-left:8px}.intent-choices{flex-direction:column}.intent-choices button{text-align:left}.reveal-ready{transform:translateY(14px)}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal-ready{opacity:1;transform:none;transition:none}.living-actions a,.structured-actions a,.immersive-final a,.nav-btn{transform:none!important}.final-living-world{display:none}}
/* Distinct page openings v14 */
.content-wrapper{position:relative;isolation:isolate}.page-aura{position:absolute;z-index:-1;top:0;left:0;width:100%;height:min(900px,100vh);pointer-events:none;opacity:.9;mask-image:linear-gradient(#000 0 68%,transparent 100%)}.cinematic-home~*{}body:has(.cinematic-home) .page-aura{display:none}.section-hero,.portal-hero,.developer-hero,.device-hero,.security-hero,.evidence-hero,.research-hero,.download-hero,.company-hero,.support-hero{position:relative;isolation:isolate}.section-hero:after,.structured-hero:after{content:"";position:absolute;z-index:-1;inset:-12% -4%;border-radius:40px;background:linear-gradient(135deg,rgba(255,255,255,.52),rgba(238,246,255,.22));border:1px solid rgba(80,115,200,.06)}@media(prefers-reduced-motion:reduce){.page-aura{display:none}}
/* Luminous visual reset v16 */
:root{--pearl:#fbfcff;--sky:#dff0ff;--aqua:#dffbf6;--violet:#eee8ff;--peach:#fff0e5;--mint:#dcf8eb;--deep-navy:#1b2940;--blue-grey:#617089}body{background:linear-gradient(180deg,#fbfcff,#f8fbff 38%,#fffafd);color:var(--deep-navy)}.cinematic-home{position:relative;isolation:isolate}.cinematic-home:before{content:"";position:absolute;z-index:-2;inset:0 -5vw;background:radial-gradient(700px circle at 18% calc(8% + var(--journey-y,0%)),rgba(101,190,255,.13),transparent 66%),radial-gradient(660px circle at 82% calc(25% + var(--journey-y,0%)),rgba(152,120,255,.11),transparent 64%),radial-gradient(520px circle at 52% calc(44% + var(--journey-y,0%)),rgba(75,220,190,.1),transparent 64%);filter:hue-rotate(var(--journey-hue,0deg));transition:filter .5s ease;pointer-events:none}.cinematic-home>section{position:relative}.cinematic-home>section:not(.living-opening):not(.five-proof):before{content:"";position:absolute;left:50%;top:-65px;width:1px;height:130px;background:linear-gradient(transparent,rgba(79,126,220,.22),transparent)}
.creator-story,.progress-gateway,.portal-trust,.evidence-callout,.gateway-card.dark,.os-stage{color:var(--deep-navy)!important;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(232,244,255,.78))!important;border-color:rgba(78,115,190,.12)!important;box-shadow:0 30px 80px rgba(52,84,145,.1)!important}.creator-story p,.portal-trust p,.evidence-callout p,.gateway-card.dark p,.os-stage-caption,.os-stage-top,.workspace-card p{color:var(--blue-grey)!important}.creator-story a,.portal-trust a,.evidence-callout a,.progress-gateway a{color:#1468e8!important}.portal-trust .trust-levels span{color:#62718a;border-color:#cfdaec;background:rgba(255,255,255,.65)}.portal-trust .trust-levels .active{color:#087b94;border-color:#8bdce2;background:#e9fcfb}.os-stage-body,.os-rail{background:rgba(238,246,255,.8)!important}.workspace-card{background:rgba(255,255,255,.72)!important;border-color:rgba(65,105,180,.1)!important}.workspace-card.primary{background:linear-gradient(145deg,rgba(218,236,255,.9),rgba(255,255,255,.7))!important}.os-rail button{color:#5f6f88}.os-rail button.active{color:#fff}.progress-gateway i{background:#38c98b}.progress-gateway b{font-weight:520}.free-story,.memory-story,.foundation-story,.intent-moment,.creator-story{box-shadow:0 35px 90px rgba(55,85,145,.07)}
.intent-moment{overflow:hidden;border-radius:42px;transition:background .65s ease,box-shadow .65s ease}.intent-moment:after{content:"";position:absolute;z-index:-1;width:460px;height:460px;left:8%;top:18%;border-radius:50%;background:radial-gradient(circle,var(--intent-glow,rgba(90,150,255,.2)),transparent 68%);transition:background .55s,transform .65s}.intent-day{--intent-glow:rgba(104,178,255,.25);background:linear-gradient(135deg,#f6fbff,#fff)}.intent-create{--intent-glow:rgba(185,124,255,.26);background:linear-gradient(135deg,#fbf7ff,#fff4ea)}.intent-build{--intent-glow:rgba(75,210,200,.24);background:linear-gradient(135deg,#f2fffc,#f2f7ff)}.intent-focus{--intent-glow:rgba(102,135,230,.14);background:linear-gradient(135deg,#f8faff,#fcfdff)}.intent-focus .intent-orbit i:nth-child(2),.intent-focus .intent-orbit i:nth-child(3){opacity:.22}.intent-continue{--intent-glow:rgba(255,180,105,.24);background:linear-gradient(135deg,#fff8ef,#f7f4ff)}.intent-create .intent-orbit{transform:rotate(4deg) scale(1.04)}.intent-build .intent-orbit:before{transform:rotate(70deg)}.intent-continue .intent-orbit:after{transform:rotate(125deg)}.intent-orbit,.intent-orbit:before,.intent-orbit:after,.intent-orbit i{transition:transform .7s ease,opacity .5s,background .5s}.intent-orbit span{max-width:150px;text-align:center;font-size:.9rem}
@media(max-width:700px){.cinematic-home>section:not(.living-opening):not(.five-proof):before{height:80px;top:-40px}.intent-moment{border-radius:26px}.intent-moment:after{width:300px;height:300px;left:-15%;top:8%}}
/* Visual QA corrections v17 */
.skip-link:not(:focus-visible){transform:translateY(-220%);opacity:0}.skip-link:focus-visible{transform:none;opacity:1;top:1rem}.living-fallback{transition:opacity .35s ease}.living-hero.is-live .living-fallback,.final-living-world.is-live .living-fallback{opacity:0}.living-hero canvas{filter:saturate(1.08) contrast(1.03)}
/* Mobile overflow correction v17 */
html,body{max-width:100%;overflow-x:clip}.cinematic-home,.living-opening,.living-copy,.living-hero,.preview-story,.living-desktop{min-width:0;max-width:100%}.living-copy h1{max-width:12ch;overflow-wrap:break-word}.living-copy h1 em{display:block}@media(max-width:700px){.content-wrapper{padding-left:18px!important;padding-right:18px!important}.cinematic-home{width:100%}.living-opening{width:100%;grid-template-columns:minmax(0,1fr)!important;gap:38px}.living-copy{width:100%;overflow:hidden}.living-copy h1{width:100%;max-width:9ch;font-size:clamp(2.75rem,13.6vw,3.6rem)!important;letter-spacing:-.05em}.living-copy>p{max-width:34ch}.living-actions a{box-sizing:border-box}.living-hero{width:100%;min-height:390px}.five-proof{box-sizing:border-box;width:100%;padding-inline:.25rem}.intent-moment,.memory-story,.adaptive-story,.creator-story,.free-story{width:100%;box-sizing:border-box}}
/* Spatial continuity v18 */
@view-transition{navigation:auto}::view-transition-old(root){animation:page-out .22s ease both}::view-transition-new(root){animation:page-in .42s cubic-bezier(.2,.75,.25,1) both}@keyframes page-out{to{opacity:0;transform:translateY(-5px)}}@keyframes page-in{from{opacity:0;transform:translateY(10px)}}.header:before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(230,245,255,.58),rgba(246,238,255,.5),rgba(231,252,247,.54));filter:hue-rotate(var(--nav-hue,0deg));opacity:.38;transition:filter .5s,opacity .35s}.living-desktop{transform:perspective(1200px) rotateY(calc(var(--depth-x,0)*2deg)) rotateX(calc(var(--depth-y,0)*-2deg));transition:transform .28s ease}.living-desktop .fluid-pane{transform:translate(calc(var(--depth-x,0)*12px),calc(var(--depth-y,0)*10px));transition:transform .25s ease}.living-desktop .fluid-pane.assistant{transform:translate(calc(var(--depth-x,0)*-10px),calc(var(--depth-y,0)*-7px))}.product-orbit,.memory-field{transform:perspective(1000px) rotateY(calc(var(--depth-x,0)*3deg)) rotateX(calc(var(--depth-y,0)*-3deg));transition:transform .3s ease}.evidence-badge,.stat-badge{font-weight:600!important}.stat-value{color:#245ca8!important;font-weight:560!important}.grid-layout .stat-card{background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(237,247,255,.7));border-color:rgba(72,112,190,.1)}pre,code,.code-block{background:#f2f6fc!important;color:#284260!important;border-color:#dce6f3!important}@media(prefers-reduced-motion:reduce){::view-transition-old(root),::view-transition-new(root){animation:none}.living-desktop,.living-desktop .fluid-pane,.product-orbit,.memory-field{transform:none!important}}
/* Wide cinematic system v19 */
:root{--page-max:1680px;--content-max:1480px;--reading-max:760px;--page-padding:clamp(20px,4vw,72px)}.header-inner{max-width:var(--page-max);padding-inline:var(--page-padding)}.content-wrapper{width:100%;max-width:none;padding:0 var(--page-padding) 60px}.page-layout,.structured-page,.portal-detail,.product-overview{max-width:var(--content-max);margin-inline:auto}.footer-inner,.footer-bottom{max-width:var(--page-max);padding-inline:var(--page-padding)}.cinematic-home{width:100%;max-width:none}.cinematic-home>section{max-width:var(--content-max);margin-inline:auto}.cinematic-home .living-opening{max-width:var(--page-max);min-height:calc(100vh - 70px);padding-block:clamp(48px,7vh,100px);grid-template-columns:minmax(430px,.82fr) minmax(620px,1.18fr);gap:clamp(50px,6vw,110px)}.living-copy h1{max-width:11ch!important;font-size:clamp(4rem,5.7vw,5.125rem)!important}.living-copy>p{max-width:620px}.hardware-note{display:block;margin-top:1rem;color:var(--blue-grey);font-size:.9rem}.living-hero{min-height:min(72vh,740px);border-radius:38% 62% 52% 48%/45% 42% 58% 55%}.five-proof{max-width:var(--content-max)!important;width:100%;justify-content:flex-start;padding-block:2rem}.five-proof strong{max-width:290px;margin-right:auto;font-size:1.1rem}.five-proof span{white-space:nowrap}.intent-moment,.memory-story,.control-cinematic{min-height:760px}.preview-story,.evidence-cinematic{width:min(96vw,1560px);max-width:1560px!important;margin-left:calc(50% - min(48vw,780px));grid-template-columns:minmax(300px,.55fr) minmax(680px,1.45fr);padding-block:clamp(100px,12vw,180px)}
.workspace-cinematic,.control-cinematic{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(60px,8vw,130px);align-items:center;padding-block:clamp(100px,12vw,180px)}.workspace-cinematic h2,.dual-foundation h2,.evidence-cinematic h2,.developer-cinematic h2,.edition-cinematic h2,.control-cinematic h2{font-size:clamp(2.7rem,4vw,3.5rem);line-height:1.03;letter-spacing:-.05em}.workspace-cinematic p,.dual-foundation p,.evidence-cinematic p,.developer-cinematic p,.edition-cinematic p,.control-cinematic p{max-width:62ch;color:var(--blue-grey);font-size:clamp(1rem,1.25vw,1.18rem);line-height:1.65}.workspace-visual{position:relative;min-height:650px;border-radius:48% 52% 40% 60%/48% 42% 58% 52%;background:linear-gradient(145deg,#e6f5ff,#f2ecff);box-shadow:0 45px 100px rgba(52,85,150,.12);transition:.65s;overflow:hidden}.workspace-visual.workspace-create{background:linear-gradient(145deg,#f3eaff,#fff1e4)}.workspace-visual.workspace-focus{background:linear-gradient(145deg,#edf3ff,#f8fcff)}.workspace-visual>span{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-size:1.1rem;font-weight:600}.workspace-island{position:absolute;border:1px solid rgba(70,110,190,.12);border-radius:28px;background:rgba(255,255,255,.68);box-shadow:0 25px 60px rgba(50,80,140,.11);transition:.65s}.workspace-island.one{left:9%;top:14%;width:54%;height:35%}.workspace-island.two{right:8%;top:28%;width:30%;height:48%}.workspace-island.three{left:18%;bottom:9%;width:48%;height:27%}.workspace-create .one{transform:translate(16%,8%) rotate(4deg)}.workspace-create .two{transform:translate(-20%,-18%) rotate(-5deg)}.workspace-focus .two,.workspace-focus .three{opacity:.22;transform:scale(.88)}.workspace-focus .one{left:20%;top:22%;width:60%;height:52%}.workspace-switch,.preview-tabs{display:flex;gap:.55rem;margin-top:1.8rem}.workspace-switch button{padding:.72rem 1.05rem;border:1px solid #dbe5f3;border-radius:999px;background:#fff}.workspace-switch button.active{color:#fff;background:#1765ff}
.dual-foundation{display:grid;grid-template-columns:1fr 1fr;gap:1px;margin-block:clamp(100px,12vw,180px);overflow:hidden;border:1px solid rgba(70,105,170,.09);border-radius:44px}.dual-foundation article{position:relative;min-height:690px;padding:clamp(40px,5vw,80px);display:flex;flex-direction:column;justify-content:flex-end}.offline-living{background:linear-gradient(150deg,#f2fffb,#e7f6ff)}.security-living{background:linear-gradient(150deg,#fff8ee,#f3edff)}.dual-foundation a,.developer-cinematic a,.control-cinematic a{color:#1468e8;text-decoration:none;font-weight:600}.signal-field,.shield-field{position:absolute;left:10%;right:10%;top:10%;height:48%}.signal-field i{position:absolute;left:50%;top:50%;border:1px solid rgba(50,175,155,.25);border-radius:50%;transform:translate(-50%,-50%)}.signal-field i:nth-child(1){width:90px;height:90px}.signal-field i:nth-child(2){width:180px;height:180px}.signal-field i:nth-child(3){width:280px;height:280px}.shield-field{display:grid;place-items:center}.shield-field i{position:absolute;width:220px;height:250px;border:1px solid rgba(118,95,220,.2);border-radius:46% 46% 58% 58%}.shield-field i:nth-child(2){width:145px;height:170px}.shield-field span{width:42px;height:42px;border-radius:50%;background:#fff;box-shadow:0 0 50px rgba(100,100,230,.38)}
.evidence-cinematic{display:grid;align-items:center;gap:clamp(60px,7vw,120px)}.evidence-copy{max-width:560px}.evidence-journey{display:grid;grid-template-columns:220px 1fr;gap:1rem}.evidence-journey nav{display:flex;flex-direction:column;justify-content:center}.evidence-journey nav button{padding:1rem;text-align:left;border:0;border-left:2px solid #dce5f3;background:transparent;color:var(--blue-grey)}.evidence-journey nav button.active{border-color:#1765ff;color:#1765ff;background:linear-gradient(90deg,rgba(23,101,255,.07),transparent)}.evidence-stage{min-height:590px;padding:2rem;border:1px solid rgba(65,105,180,.1);border-radius:32px;background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(235,246,255,.75));box-shadow:0 35px 90px rgba(45,75,135,.1)}.evidence-device{position:relative;display:grid;place-items:center;min-height:380px;border-radius:24px;background:linear-gradient(145deg,#eaf3ff,#f6efff);overflow:hidden}.evidence-device span{position:absolute;width:270px;height:270px;border:1px solid rgba(65,105,210,.2);border-radius:50%}.evidence-device i{width:150px;height:105px;border:10px solid rgba(255,255,255,.8);border-radius:15px;background:linear-gradient(145deg,#d7e8ff,#eee7ff);box-shadow:0 25px 60px rgba(45,75,145,.2)}.evidence-device b{position:absolute;bottom:25px;font-weight:550}.evidence-meta{padding:1.4rem .3rem 0}.evidence-meta>span{color:#14856c;font-size:.78rem;font-weight:600}.evidence-meta details{margin-top:1rem}.evidence-meta summary{cursor:pointer;color:#1468e8}
.developer-cinematic{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(60px,8vw,130px);align-items:center;min-height:700px;padding:clamp(70px,8vw,120px);border-radius:48px;background:linear-gradient(135deg,#f0f7ff,#f9f1ff)}.developer-flow{display:flex;align-items:center;gap:1rem}.developer-flow span{display:grid;place-items:center;width:110px;aspect-ratio:1;border:1px solid rgba(70,110,190,.12);border-radius:50%;background:rgba(255,255,255,.78);box-shadow:0 25px 55px rgba(45,75,140,.1)}.developer-flow i{flex:1;height:1px;background:linear-gradient(90deg,#1765ff,#5ddbcf)}.edition-cinematic{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(60px,8vw,130px);align-items:center;padding-block:clamp(110px,12vw,180px)}.edition-cinematic ol{list-style:none;margin:0;padding:0}.edition-cinematic li{display:grid;grid-template-columns:90px 1fr auto;align-items:center;gap:1rem;padding:1.6rem;border-bottom:1px solid rgba(65,100,170,.1)}.edition-cinematic li small{color:#1765ff}.edition-cinematic li b{font-size:1.2rem;font-weight:550}.edition-cinematic li span{color:var(--blue-grey);font-size:.8rem}.edition-cinematic .edition-free{border-radius:22px;background:linear-gradient(90deg,#eaf5ff,#f2fff9);border-bottom:0}.control-cinematic{grid-template-columns:1.05fr .95fr}.control-rings{position:relative;display:grid;place-items:center;min-height:560px}.control-rings i{position:absolute;width:420px;height:420px;border:1px solid rgba(65,110,210,.14);border-radius:50%}.control-rings i:nth-child(2){width:290px;height:290px;transform:rotate(35deg);border-radius:42% 58%}.control-rings i:nth-child(3){width:170px;height:170px;transform:rotate(-25deg);border-radius:58% 42%}.control-rings span{font-weight:600;color:#1765ff}
.cinematic-v19 .immersive-final{width:min(96vw,1560px);max-width:1560px!important;margin-left:calc(50% - min(48vw,780px));min-height:720px;display:flex;flex-direction:column;justify-content:center}.cinematic-v19 .immersive-final h2{max-width:950px;margin-inline:auto}.cinematic-v19 .immersive-final p{margin-inline:auto}.cinematic-v19 .immersive-final div:last-child{margin-top:2rem}
@media(max-width:1100px){.cinematic-home .living-opening{grid-template-columns:1fr;min-height:auto}.living-hero{min-height:620px}.preview-story,.evidence-cinematic{width:100%;margin-left:auto;grid-template-columns:1fr}.workspace-cinematic,.developer-cinematic,.edition-cinematic,.control-cinematic{grid-template-columns:1fr}.dual-foundation{grid-template-columns:1fr}.evidence-journey{grid-template-columns:1fr}.evidence-journey nav{flex-direction:row;overflow-x:auto}.evidence-journey nav button{min-width:170px;border-left:0;border-bottom:2px solid #dce5f3}.developer-flow{flex-wrap:wrap}}
@media(max-width:700px){:root{--page-padding:20px}.content-wrapper{padding-inline:20px!important}.header-inner{padding-inline:20px}.cinematic-home .living-opening{padding-top:40px}.living-hero{min-height:420px}.five-proof{align-items:flex-start}.five-proof strong{margin:0}.preview-story,.evidence-cinematic{padding-block:85px}.workspace-cinematic,.control-cinematic{grid-template-columns:1fr;padding-block:85px}.workspace-visual{min-height:430px}.dual-foundation{margin-block:85px;border-radius:28px}.dual-foundation article{min-height:580px;padding:34px 24px}.signal-field i:nth-child(3){width:220px;height:220px}.developer-cinematic{min-height:600px;padding:55px 24px;border-radius:28px}.developer-flow span{width:74px}.developer-flow i{width:20px;flex:none}.edition-cinematic{padding-block:85px}.edition-cinematic li{grid-template-columns:62px 1fr}.edition-cinematic li span{grid-column:2}.control-rings{min-height:400px}.control-rings i{width:300px;height:300px}.control-rings i:nth-child(2){width:210px;height:210px}.control-rings i:nth-child(3){width:120px;height:120px}.cinematic-v19 .immersive-final{width:100%;margin-left:auto;min-height:620px}.evidence-stage{padding:1rem;min-height:510px}.evidence-device{min-height:320px}}
/* v19 visual QA */
.content-wrapper{box-sizing:border-box}.living-copy h1{max-width:13ch!important;font-size:clamp(4rem,5.35vw,4.75rem)!important}@media(max-width:700px){.content-wrapper{width:100vw!important;max-width:100vw!important;box-sizing:border-box}.cinematic-home{width:calc(100vw - 40px)!important;max-width:calc(100vw - 40px)!important}.cinematic-home *{min-width:0}.living-copy,.living-copy>p{width:100%!important;max-width:100%!important;box-sizing:border-box;overflow-wrap:anywhere}.living-copy h1{max-width:10ch!important;font-size:clamp(2.8rem,13.2vw,3.5rem)!important}}
/* Living Intelligence Environment — cinematic homepage v24 */
.cinematic-v24{--ink:#0b1730;--copy:#42536f;--blue:#075ff0;--cyan:#00bfd3;--violet:#7657f6;--mint:#26b998;color:var(--ink)}
.cinematic-v24>section{position:relative}.cinematic-v24 .living-opening{position:relative;isolation:isolate;display:grid;grid-template-columns:minmax(420px,42fr) minmax(620px,58fr);align-items:center;gap:clamp(30px,4vw,74px);min-height:calc(100vh - 68px);max-width:1680px;padding-block:clamp(55px,8vh,110px);overflow:visible}
.hero-field{position:absolute;z-index:-2;inset:0 calc(50% - 50vw);overflow:hidden;pointer-events:none;background:linear-gradient(120deg,#fff 4%,#f3f9ff 42%,#f7f2ff 70%,#effffc)}.hero-field:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.93) 0 24%,rgba(255,255,255,.42) 53%,rgba(255,255,255,.08))}.hero-field canvas{width:100%;height:100%;filter:saturate(1.3) contrast(1.08);opacity:.7}
.cinematic-v24 .living-copy{position:relative;z-index:3;overflow:visible}.cinematic-v24 .living-eyebrow{font-size:13px;letter-spacing:.14em;color:#0759da}.cinematic-v24 .living-copy h1{max-width:11ch!important;margin:25px 0 23px;font-size:clamp(68px,5.25vw,82px)!important;font-weight:580!important;line-height:.94}.cinematic-v24 .living-copy>p{max-width:610px!important;font-size:clamp(17px,1.16vw,19px);color:#364966;line-height:1.65}.cinematic-v24 .living-actions{margin-top:30px}.cinematic-v24 .living-actions a{padding:15px 22px;font-size:14px;box-shadow:0 16px 34px rgba(7,95,240,.22)}.cinematic-v24 .living-actions a+a{box-shadow:0 12px 32px rgba(35,70,130,.08)}.cinematic-v24 .hardware-note{display:flex;align-items:center;gap:9px;margin-top:18px;font-size:14px;color:#38506e}.hardware-note:before{content:"";width:8px;height:8px;border-radius:2px;background:#22b98c;box-shadow:0 0 0 5px rgba(34,185,140,.12)}
.intelligence-environment{position:relative;z-index:1;min-height:min(76vh,760px);perspective:1300px;transform-style:preserve-3d}.luminous-platform{position:absolute;left:4%;right:0;bottom:3%;height:33%;clip-path:polygon(12% 0,100% 16%,82% 100%,0 78%);background:linear-gradient(145deg,rgba(16,115,255,.18),rgba(84,226,218,.12) 48%,rgba(153,96,255,.18));border:1px solid rgba(44,109,235,.2);filter:drop-shadow(0 35px 50px rgba(44,84,160,.18));transform:rotateX(62deg) rotateZ(-4deg)}
.spatial-layer{position:absolute;padding:21px 23px;border:1px solid rgba(95,151,235,.3);border-radius:18px;background:linear-gradient(145deg,rgba(255,255,255,.88),rgba(238,247,255,.62));box-shadow:0 30px 65px rgba(39,73,137,.17),inset 0 1px rgba(255,255,255,.85);backdrop-filter:blur(18px);transform-style:preserve-3d;transition:transform .35s ease}.spatial-layer small,.spatial-layer b{display:block}.spatial-layer small{color:#1471e8;font-size:11px;letter-spacing:.13em}.spatial-layer b{margin-top:10px;font-size:17px;font-weight:570}.layer-work{left:4%;top:16%;width:58%;height:39%;transform:rotateY(8deg) rotateX(2deg) translateZ(42px)}.layer-work span{display:block;width:74%;height:7px;margin-top:18px;border-radius:2px;background:linear-gradient(90deg,#2580f6,#51d8c7)}.layer-work span+span{width:48%;background:#dbe8f8}.layer-create{right:1%;top:28%;width:38%;height:35%;transform:rotateY(-8deg) translateZ(85px)}.layer-create i{display:block;width:70%;height:68px;margin:19px auto 0;clip-path:polygon(10% 30%,67% 0,100% 68%,40% 100%);background:linear-gradient(135deg,#7c62f8,#ff9c70)}.layer-memory{left:18%;bottom:13%;width:42%;height:21%;transform:translateZ(130px)}.layer-safe{right:3%;bottom:9%;width:29%;height:20%;border-color:rgba(34,187,151,.35);transform:translateZ(75px)}.layer-safe small{color:#13886e}.intelligence-point{position:absolute;z-index:5;left:57%;top:57%;width:12px;height:12px;border-radius:3px;background:#fff;box-shadow:0 0 0 6px rgba(50,133,255,.16),0 0 34px 13px rgba(70,150,255,.5)}.intelligence-path{position:absolute;z-index:4;height:2px;transform-origin:left;background:linear-gradient(90deg,transparent,#2a8cff,#59e1c7,transparent);filter:drop-shadow(0 0 6px #39bff3)}.path-a{left:30%;top:42%;width:42%;transform:rotate(21deg)}.path-b{left:55%;top:58%;width:35%;transform:rotate(-31deg)}.environment-status{position:absolute;right:3%;bottom:1%;display:flex;align-items:center;gap:9px;padding:10px 14px;border:1px solid rgba(79,123,195,.18);border-radius:10px;background:rgba(255,255,255,.72);font-size:12px;color:#52657f;backdrop-filter:blur(15px)}.environment-status i{width:7px;height:7px;border-radius:2px;background:#25bd91}.environment-status button{margin-left:8px;border:0;background:none;color:#1764d9;cursor:pointer}
.intelligence-environment:hover .layer-work{transform:rotateY(5deg) translate3d(-8px,-5px,65px)}.intelligence-environment:hover .layer-create{transform:rotateY(-5deg) translate3d(10px,7px,110px)}
.cinematic-v24 .five-proof{margin-top:-1px;padding-block:25px;background:linear-gradient(90deg,rgba(234,246,255,.75),rgba(247,241,255,.7),rgba(235,255,249,.7));border:0;box-shadow:0 20px 65px rgba(57,91,150,.06)}
.cinematic-v24 .intent-moment{grid-template-columns:1.05fr .95fr;min-height:670px;padding:90px 5%;border-radius:28px;background:linear-gradient(135deg,#eff8ff,#fff 55%,#f6f0ff)}.cinematic-v24 .intent-moment:after,.intent-orbit{display:none!important}.intent-stream{position:relative;min-height:430px}.intent-command,.intent-result{position:absolute;width:70%;padding:24px;border:1px solid rgba(75,125,210,.2);border-radius:16px;background:rgba(255,255,255,.8);box-shadow:0 25px 60px rgba(43,74,136,.12)}.intent-command{left:0;top:8%}.intent-result{right:0;bottom:8%;border-color:rgba(36,188,152,.26)}.intent-command small,.intent-command b,.intent-result small,.intent-result b,.intent-result span{display:block}.intent-command small,.intent-result small{color:#1268e5;font-size:11px;letter-spacing:.13em}.intent-command b,.intent-result b{margin-top:11px;font-size:21px}.intent-result span{margin-top:8px;color:#4a657d;font-size:13px}.intent-route{position:absolute;left:25%;top:37%;width:54%;height:33%;border-left:2px solid #4594f6;border-bottom:2px solid #52cfbd;transform:skewY(-17deg)}.intent-route i{position:absolute;width:10px;height:10px;border-radius:2px;background:#fff;box-shadow:0 0 0 5px rgba(50,130,245,.14)}.intent-route i:nth-child(1){left:-6px;top:18%}.intent-route i:nth-child(2){left:46%;bottom:-6px}.intent-route i:nth-child(3){right:-5px;bottom:-6px;background:#45c9aa}
.continuity-timeline{position:relative;min-height:510px;padding:45px;background:linear-gradient(145deg,#eef7ff,#fff 55%,#f8f2ff);border:1px solid rgba(67,112,190,.13);border-radius:24px;box-shadow:0 30px 75px rgba(40,76,140,.1)}.timeline-now{padding:24px;border-left:4px solid #146ef2;background:rgba(255,255,255,.8);box-shadow:0 18px 35px rgba(43,77,140,.09)}.timeline-now small,.timeline-now b,.timeline-now span,.timeline-history small,.timeline-history b{display:block}.timeline-now small,.timeline-history small{color:#1768df;font-size:11px;letter-spacing:.12em}.timeline-now b{margin:9px 0;font-size:22px}.timeline-now span{color:#516780;font-size:13px}.timeline-track{display:flex;align-items:center;justify-content:space-around;height:90px;border-left:2px solid #bad4f5;margin-left:28px}.timeline-track i{width:9px;height:9px;border-radius:2px;background:#65a6f7}.timeline-history{display:grid;gap:10px}.timeline-history span{padding:16px 19px;border-bottom:1px solid #dae6f5;background:rgba(255,255,255,.56)}.timeline-history b{margin-top:6px;font-size:15px}
.history-stack{position:relative;min-height:500px;perspective:1000px}.history-stack>div{position:absolute;left:8%;right:8%;padding:28px;border:1px solid rgba(62,112,205,.2);border-radius:18px;background:rgba(255,255,255,.9);box-shadow:0 28px 60px rgba(43,76,140,.13)}.history-stack>div:nth-child(1){top:5%;z-index:3;transform:translateX(-5%)}.history-stack>div:nth-child(2){top:34%;z-index:2;transform:translateX(5%)}.history-stack>div:nth-child(3){top:63%;z-index:1}.history-stack small,.history-stack b,.history-stack span{display:block}.history-stack small{color:#126be8;font-size:11px}.history-stack b{margin:9px 0;font-size:20px}.history-stack span{color:#27886f}.history-stack button{position:absolute;right:24px;bottom:24px;border:0;color:#075fea;background:#edf5ff;padding:8px 12px;border-radius:7px}
.cinematic-v24 .control-cinematic{min-height:650px}.cinematic-v24 .control-rings{display:none}
.cinematic-v24 .immersive-final{width:min(96vw,1560px);max-width:1560px!important;min-height:680px;margin-left:calc(50% - min(48vw,780px));display:flex;flex-direction:column;justify-content:center;border:1px solid rgba(66,119,210,.16);border-radius:28px;background:linear-gradient(120deg,#eef8ff,#fff 43%,#f6f0ff 75%,#effff9);box-shadow:0 40px 100px rgba(45,78,140,.11)}.cinematic-v24 .immersive-final:after,.final-light,.final-living-world{display:none}.final-environment{position:absolute!important;inset:0;z-index:0!important;overflow:hidden;opacity:.8}.final-pane{position:absolute;border:1px solid rgba(61,122,220,.2);background:rgba(255,255,255,.55);box-shadow:0 25px 60px rgba(42,80,145,.11);transform:skewY(-7deg)}.final-pane.one{left:5%;top:18%;width:27%;height:48%}.final-pane.two{right:6%;top:10%;width:31%;height:42%;transform:skewY(8deg)}.final-pane.three{right:18%;bottom:8%;width:25%;height:22%;transform:skewY(-4deg)}.final-environment i{position:absolute;left:27%;right:25%;bottom:24%;height:2px;background:linear-gradient(90deg,#1685ff,#5ddac8,#8b63f6)}.cinematic-v24 .immersive-final>*:not(.final-environment){position:relative;z-index:2}
.cinematic-v24 h2{font-size:clamp(44px,3.7vw,58px)!important;font-weight:580!important}.cinematic-v24 p{font-size:clamp(17px,1.15vw,19px);color:#40516b}.cinematic-v24 .story-index{font-size:13px}.cinematic-v24 .workspace-cinematic,.cinematic-v24 .memory-story,.cinematic-v24 .dual-foundation,.cinematic-v24 .evidence-cinematic,.cinematic-v24 .developer-cinematic,.cinematic-v24 .edition-cinematic,.cinematic-v24 .control-cinematic{padding-block:clamp(75px,8vw,120px);min-height:auto}.cinematic-v24 .memory-story{border-radius:28px;padding-inline:5%}.cinematic-v24 .workspace-visual{border-radius:24px;background:linear-gradient(145deg,#dbf0ff,#f0e7ff);box-shadow:0 35px 80px rgba(46,78,143,.14)}.cinematic-v24 .workspace-island{border-radius:14px;border-color:rgba(44,113,220,.22)}
@media(max-width:1100px){.cinematic-v24 .living-opening{grid-template-columns:1fr;min-height:auto}.hero-field:after{background:rgba(255,255,255,.42)}.intelligence-environment{min-height:620px}.cinematic-v24 .living-copy{max-width:760px;padding-top:50px}.cinematic-v24 .intent-moment{grid-template-columns:1fr}.intent-stream{order:2}.cinematic-v24 .immersive-final{width:100%;margin-left:0}}
@media(max-width:700px){.cinematic-v24 .living-opening{padding-top:38px!important;gap:24px}.cinematic-v24 .living-copy h1{max-width:10ch!important;font-size:clamp(48px,14vw,64px)!important}.cinematic-v24 .living-copy>p{font-size:17px}.cinematic-v24 .living-actions{flex-direction:column}.cinematic-v24 .living-actions a{width:100%;text-align:center}.intelligence-environment{min-height:470px}.luminous-platform{left:-8%;right:-4%;bottom:7%}.layer-work{left:0;top:11%;width:67%;height:37%}.layer-create{right:0;top:31%;width:45%;height:32%}.layer-memory{left:7%;bottom:13%;width:52%}.layer-safe{right:0;bottom:8%;width:36%}.environment-status{left:0;right:auto;bottom:0}.environment-status span{display:none}.cinematic-v24 .five-proof{padding:24px 0}.cinematic-v24 .five-proof span{white-space:normal}.cinematic-v24 .intent-moment{padding:65px 20px}.intent-stream{min-height:390px}.intent-command,.intent-result{width:85%}.cinematic-v24 .memory-story{padding:65px 20px}.continuity-timeline{min-height:480px;padding:24px 18px}.history-stack{min-height:430px}.history-stack>div{left:0;right:0;padding:22px}.history-stack button{right:18px;bottom:18px}.cinematic-v24 .immersive-final{min-height:590px;padding:80px 20px}.final-pane.one{left:-20%;width:55%}.final-pane.two{right:-18%;width:58%}.cinematic-v24 h2{font-size:clamp(40px,11vw,50px)!important}}
@media(prefers-reduced-motion:reduce){.spatial-layer,.intelligence-environment{transform:none!important}}.intelligence-environment{transform:perspective(1300px) rotateY(calc(var(--depth-x,0)*2.5deg)) rotateX(calc(var(--depth-y,0)*-2deg));transition:transform .3s ease}.intelligence-environment .layer-work{margin-left:calc(var(--depth-x,0)*12px);margin-top:calc(var(--depth-y,0)*10px)}.intelligence-environment .layer-create{margin-left:calc(var(--depth-x,0)*-10px);margin-top:calc(var(--depth-y,0)*-8px)}@supports(animation-timeline:view()){.spatial-layer{animation:assemble linear both;animation-timeline:view();animation-range:entry 0% exit 38%}@keyframes assemble{0%{opacity:.35;translate:0 70px;scale:.88}45%,100%{opacity:1;translate:0 0;scale:1}}}
/* Site-wide Living Intelligence System v25 */
:root{--local-x:50%;--local-y:50%}.living-intelligence-layer{position:fixed;z-index:-1;inset:0;width:100%;height:100%;pointer-events:none;opacity:.62;mix-blend-mode:multiply}.content-wrapper:after{content:"";position:absolute;z-index:-1;left:50%;top:70vh;bottom:0;width:2px;background:linear-gradient(rgba(41,139,255,.03),rgba(54,207,193,.28) 22%,rgba(123,91,246,.2) 55%,rgba(52,196,153,.2) 82%,transparent);filter:drop-shadow(0 0 12px rgba(63,177,255,.38));pointer-events:none}
.header{background:rgba(255,255,255,.74);border-bottom:1px solid rgba(104,168,245,.16);box-shadow:0 12px 44px rgba(82,151,242,.055),inset 0 1px #fff;backdrop-filter:blur(22px) saturate(1.25)}.header:after{content:"";position:absolute;left:var(--header-x,-200px);bottom:-1px;width:180px;height:2px;transform:translateX(-50%);background:linear-gradient(90deg,transparent,#2b91ff,#59dacd,transparent);filter:drop-shadow(0 0 8px rgba(55,164,255,.5))}.header.is-condensed{background:rgba(255,255,255,.86);box-shadow:0 15px 45px rgba(74,142,235,.08),inset 0 1px #fff}.logo-copy{display:flex;flex-direction:column;line-height:1}.logo-copy small{margin-top:4px;color:#55708f;font-size:8px;letter-spacing:.09em}.brand-pulse{width:7px;height:7px;margin-left:4px;background:#36c5a8;box-shadow:0 0 0 5px rgba(54,197,168,.12),0 0 18px rgba(54,197,168,.42);animation:brand-breathe 3s ease-in-out infinite}.nav-item{position:relative}.nav-item:after{content:"";position:absolute;left:50%;right:50%;bottom:1px;height:2px;background:linear-gradient(90deg,#2d90ff,#57d9ce);transition:.3s}.nav-mega:hover .nav-item:after,.nav-mega[open] .nav-item:after{left:12%;right:12%}.nav-btn{position:relative;overflow:hidden;box-shadow:0 12px 30px rgba(54,132,255,.16)!important}.nav-btn:after{content:"";position:absolute;top:-80%;bottom:-80%;width:40%;left:-60%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.65),transparent);transform:skewX(-24deg);animation:button-light 4.8s ease-in-out infinite}
.mega-panel,.nav-links.mobile-open,.search-modal{background:radial-gradient(420px circle at var(--local-x) var(--local-y),rgba(66,184,255,.15),transparent 48%),rgba(255,255,255,.88)!important;border-color:rgba(113,178,246,.25)!important;box-shadow:0 22px 60px rgba(73,144,236,.1),inset 0 1px #fff!important;backdrop-filter:blur(24px)}
:where(.glass-panel,.gateway-card,.purpose-grid>div,.next-links a,.native-grid article,.capability-rail article,.stat-card,.structured-hero,.section-hero,.workspace-island,.spatial-layer,.intent-command,.intent-result,.continuity-timeline,.timeline-now,.history-stack>div,.evidence-stage,.final-pane){background-image:radial-gradient(420px circle at var(--local-x) var(--local-y),rgba(66,184,255,.16),transparent 45%);border-color:rgba(110,180,248,.25)!important;box-shadow:0 18px 50px rgba(85,150,255,.08),inset 0 1px #fff!important}:where(.glass-panel,.gateway-card,.purpose-grid>div,.next-links a,.native-grid article,.capability-rail article,.stat-card):hover{transform:translateY(-2px);box-shadow:0 22px 58px rgba(72,158,248,.11),0 8px 28px rgba(98,105,245,.06),inset 0 1px #fff!important}
.what-is{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(60px,8vw,130px);align-items:center;padding:clamp(80px,9vw,135px) 0}.what-is h2{margin:18px 0}.understanding-flow{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:center;gap:15px}.understanding-flow span{min-height:160px;padding:24px;border-left:3px solid #2488f8;background:rgba(255,255,255,.76);box-shadow:0 18px 50px rgba(72,155,245,.08)}.understanding-flow span:nth-of-type(2){border-color:#765ff1}.understanding-flow span:nth-of-type(3){border-color:#3fc8aa}.understanding-flow small,.understanding-flow b{display:block}.understanding-flow b{margin-top:70px}.understanding-flow i{width:38px;height:2px;background:linear-gradient(90deg,#2c8ef8,#55d3c3);animation:flow-light 2.4s infinite}
.scene-toggle{margin-top:20px;padding:10px 14px;border:1px solid rgba(81,161,244,.25);border-radius:9px;color:#1268df;background:rgba(255,255,255,.72);cursor:pointer}.local-runtime,.permission-scene{position:relative;min-height:300px;margin-bottom:45px;padding:25px;border:1px solid rgba(93,163,239,.23);background:linear-gradient(145deg,#edf8ff,#fff);overflow:hidden}.network-source,.runtime-core,.data-source,.safe-destination{position:absolute;padding:18px;border:1px solid rgba(91,159,238,.22);background:rgba(255,255,255,.78);transition:.55s}.network-source{left:5%;top:11%}.network-source i{display:block;width:44px;height:3px;margin-top:10px;background:#48a1f8;box-shadow:0 7px #75baf7,0 14px #a7d4fa}.runtime-core{right:5%;bottom:10%;min-width:50%;border-color:rgba(54,196,153,.34)}.runtime-core small,.runtime-core b,.runtime-core span{display:block}.runtime-core b{margin:10px 0}.runtime-path{position:absolute;left:23%;right:29%;top:45%;height:2px;background:linear-gradient(90deg,#3195f8,#51d3bd);transition:.55s}.offline .network-source{opacity:.22}.offline .runtime-path{transform:scaleX(.2);transform-origin:right}.offline .runtime-core{box-shadow:0 0 55px rgba(53,204,164,.18),inset 0 1px #fff!important}.data-source{left:4%;top:12%}.data-source i{display:inline-block;width:7px;height:7px;margin:14px 4px 0;background:#3995f4}.permission-gate{position:absolute;left:47%;top:0;bottom:0;width:3px;background:#6d9ff0}.permission-gate span{position:absolute;top:45%;padding:6px;transform:rotate(-90deg);font-size:9px}.safe-destination{right:4%;bottom:11%}.safe-destination small,.safe-destination b{display:block}.permission-scene:after{content:"";position:absolute;left:27%;right:26%;top:38%;height:2px;background:linear-gradient(90deg,#2e91f5,#54d2c1);transition:.45s}.permission-scene.rejected:after{right:51%;background:#8a72eb}
.builder-scene{display:flex;align-items:center;gap:10px;min-height:340px;overflow-x:auto}.builder-scene>div{flex:none;width:126px;min-height:120px;padding:17px;border:1px solid rgba(94,162,238,.2);background:rgba(255,255,255,.72);opacity:.3;transform:translateY(12px);transition:.5s}.builder-scene>div.active{opacity:1;transform:none;box-shadow:0 18px 45px rgba(74,151,242,.1),inset 0 1px #fff}.builder-scene>i{flex:0 0 24px;height:2px;background:linear-gradient(90deg,#258df6,#4fd0bd)}.builder-scene small,.builder-scene b{display:block}.builder-scene b{margin-top:15px}.build-structure span{display:block;height:9px;margin:9px 0;background:#b9d8f8}.build-window b{font-size:25px}.build-test.active{color:#188668}
.edition-switch{display:flex;gap:8px;margin-top:25px}.edition-switch button{padding:10px 14px;border:1px solid #b9d5f4;background:#fff}.edition-switch button.active{color:#fff;background:#1672ee}.edition-environment{position:relative;min-height:520px;background:linear-gradient(145deg,#eaf6ff,#fff 55%,#f5efff);border:1px solid #b9d8f5}.edition-surface{position:absolute;padding:24px;border:1px solid rgba(82,157,240,.25);background:rgba(255,255,255,.8);transition:.55s;box-shadow:0 20px 50px rgba(72,151,242,.09)}.edition-surface small,.edition-surface b{display:block}.edition-surface b{margin-top:10px}.edition-surface.core{left:7%;top:9%;width:55%;height:35%}.edition-surface.protect{left:20%;right:8%;bottom:8%}.edition-surface.extra{right:5%;top:28%;width:35%;opacity:.18;transform:translateX(18px)}.edition-surface.enterprise{top:50%}.show-pro .pro,.show-enterprise .enterprise{opacity:1;transform:none}.show-enterprise .pro{opacity:.5;transform:none}
.footer{position:relative;overflow:hidden;background:linear-gradient(#fbfcff,#eef8ff);border-top:1px solid rgba(91,163,239,.15)}.footer:before{content:"";position:absolute;left:50%;top:0;width:2px;height:55%;background:linear-gradient(#3b9af8,transparent)}.footer-status{display:flex;justify-content:center;gap:9px;margin:0 auto 24px;padding:17px;color:#34516e;font-size:13px}.footer-status i{width:8px;height:8px;background:#35c09a;box-shadow:0 0 0 5px rgba(53,192,154,.12)}.footer-link{position:relative}.footer-link:hover{transform:translateX(8px);color:#1269e3}
@keyframes brand-breathe{50%{opacity:.55;box-shadow:0 0 0 8px rgba(54,197,168,.06)}}@keyframes button-light{0%,55%{left:-60%}80%,100%{left:130%}}@keyframes flow-light{50%{transform:scaleX(.72)}}
@media(max-width:900px){.logo-copy small{display:none}.what-is{grid-template-columns:1fr}.understanding-flow{grid-template-columns:1fr}.understanding-flow i{width:2px;height:28px}.edition-cinematic{grid-template-columns:1fr}}@media(max-width:600px){.content-wrapper:after{left:20px}.what-is{padding-block:65px}.understanding-flow span{min-height:110px}.understanding-flow b{margin-top:35px}.local-runtime,.permission-scene{min-height:270px}.builder-scene>div{width:112px}.edition-environment{min-height:430px}.edition-surface{padding:17px}}@media(prefers-reduced-motion:reduce){.brand-pulse,.nav-btn:after,.understanding-flow i{animation:none}.living-intelligence-layer{display:none}.builder-scene>div,.edition-surface,.local-runtime *,.permission-scene *{transition:none!important}}
.living-intelligence-layer{z-index:0}.header,.content-wrapper,.footer{position:relative}.header{z-index:1000!important}.content-wrapper,.footer{z-index:1}

/* One shared MegaMenuShell v26 */
[x-cloak]{display:none!important}.mega-trigger{appearance:none;border:0;background:transparent;cursor:pointer;font:inherit}.mega-trigger:focus-visible,.mega-content a:focus-visible,.mega-shell-head button:focus-visible,.mobile-menu-trigger:focus-visible,.search-trigger:focus-visible{outline:3px solid rgba(20,112,235,.32);outline-offset:3px}.nav-links{position:static}.mega-shell{position:fixed;z-index:80;top:68px;left:50%;width:min(1560px,calc(100vw - 40px));max-height:calc(100vh - 92px);overflow:auto;transform:translateX(-50%);padding:18px 22px 26px;border:1px solid rgba(105,178,245,.28);border-radius:0 0 26px 26px;background:radial-gradient(620px circle at var(--local-x,50%) var(--local-y,30%),rgba(66,184,255,.16),transparent 48%),linear-gradient(135deg,rgba(255,255,255,.94),rgba(240,249,255,.91) 55%,rgba(248,242,255,.92));box-shadow:0 24px 70px rgba(67,125,220,.1),inset 0 1px #fff;backdrop-filter:blur(28px) saturate(1.25);transform-origin:top center}.mega-shell-head{display:flex;align-items:center;justify-content:space-between;padding:2px 4px 15px;border-bottom:1px solid rgba(100,165,235,.16)}.mega-shell-head span{color:#4e6783;font-size:11px;letter-spacing:.12em}.mega-shell-head button{padding:8px 12px;border:1px solid rgba(95,163,238,.22);border-radius:8px;color:#1769d7;background:rgba(255,255,255,.72);cursor:pointer}.mega-shell-body{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:28px;padding-top:20px}.mega-content{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:clamp(18px,2.4vw,38px)}.mega-content>section{min-width:0;padding:20px}.mega-content .mega-intro{border:1px solid rgba(91,166,241,.22);border-radius:18px;background:radial-gradient(280px circle at var(--local-x,50%) var(--local-y,50%),rgba(65,194,255,.13),transparent 55%),rgba(255,255,255,.68)}.mega-content b,.mega-content a{display:block}.mega-content section>b{margin-bottom:14px;font-size:15px}.mega-content a{position:relative;padding:9px 26px 9px 0;color:#40546d;text-decoration:none;font-size:14px;transition:color .22s,padding .22s}.mega-content a:after{content:'→';position:absolute;right:10px;opacity:0;color:#1976e9;transition:.22s}.mega-content a:hover,.mega-content a:focus-visible{padding-left:7px;color:#1168dc}.mega-content a:hover:after,.mega-content a:focus-visible:after{right:2px;opacity:1}.mega-content a:hover{background:radial-gradient(180px circle at var(--local-x,50%) 50%,rgba(72,190,255,.14),transparent 68%)}.mega-live-preview{position:sticky;top:0;min-height:230px;padding:25px;border:1px solid rgba(94,167,241,.24);border-radius:20px;background:linear-gradient(145deg,rgba(235,248,255,.82),rgba(248,241,255,.76));overflow:hidden}.mega-live-preview small,.mega-live-preview b{display:block}.mega-live-preview small{color:#1870dd;font-size:10px;letter-spacing:.12em}.mega-live-preview b{margin-top:16px;font-size:19px;line-height:1.35}.mega-live-preview div{position:absolute;left:24px;right:24px;bottom:26px;height:75px}.mega-live-preview i{position:absolute;height:2px;background:linear-gradient(90deg,#2d91f7,#54d3c2);animation:mega-flow 2.6s ease-in-out infinite}.mega-live-preview i:nth-child(1){left:0;right:15%;top:8px}.mega-live-preview i:nth-child(2){left:18%;right:0;top:34px;animation-delay:.18s}.mega-live-preview i:nth-child(3){left:5%;right:28%;top:60px;animation-delay:.36s}.mega-trigger[aria-expanded=true]{color:#0965db}.mega-trigger[aria-expanded=true]:after{left:12%;right:12%}@keyframes mega-flow{50%{transform:translateX(10px);filter:brightness(1.25)}}
@media(max-width:1100px){body.menu-locked{overflow:hidden}.nav-links.mobile-open{display:flex!important;position:fixed;z-index:70;inset:68px 0 0;padding:16px 18px 30px;overflow-y:auto;align-items:stretch;background:linear-gradient(145deg,#f8fcff,#f8f4ff)!important;border:0!important;border-radius:0!important;box-shadow:none!important}.mobile-open .mega-trigger{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:52px;padding:12px 6px;border-bottom:1px solid rgba(91,157,231,.14);text-align:left;font-size:16px}.mobile-open .mega-trigger:after{content:'+';position:static;height:auto;background:none}.mobile-open .mega-trigger[aria-expanded=true]:after{content:'−'}.mobile-open .mega-shell{position:static;width:100%;max-height:none;margin:0;padding:12px 0 20px;transform:none;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}.mobile-open .mega-shell-head{padding:10px 0}.mobile-open .mega-shell-body{grid-template-columns:1fr}.mobile-open .mega-content{grid-template-columns:1fr;gap:4px}.mobile-open .mega-content>section{padding:14px 6px}.mobile-open .mega-live-preview{min-height:180px}.mobile-open .mega-shell[x-cloak]{display:none!important}}
@media(max-width:560px){.mega-live-preview{display:none}.mobile-open .mega-shell-body{display:block}.mobile-open .mega-content a{min-height:44px;display:flex;align-items:center}.mega-shell-head span{font-size:9px}}@media(prefers-reduced-motion:reduce){.mega-shell,.mega-content a,.mega-live-preview i{transition:none!important;animation:none!important}}
/* Universal Story v27 */
.cinematic-v24 .living-opening{position:relative;isolation:isolate;max-width:none!important;width:calc(100% + (var(--page-padding) * 2));margin-left:calc(var(--page-padding) * -1);min-height:calc(100svh - 68px);padding:clamp(70px,9vh,120px) var(--page-padding);overflow:hidden}.cinematic-v24 .hero-field{z-index:-2;inset:0;border-radius:0;background:linear-gradient(90deg,rgba(248,252,255,.96) 0%,rgba(248,252,255,.72) 34%,rgba(248,252,255,.08) 68%),url('/static/images/living-world/happilion-living-world-v1.jpg') center/cover no-repeat}.cinematic-v24 .hero-field:after{background:linear-gradient(180deg,transparent 65%,#f8faff 100%)}.cinematic-v24 .intelligence-environment{background:transparent;border:0;box-shadow:none;opacity:.72;mix-blend-mode:multiply}.cinematic-v24 .living-copy{position:relative;z-index:3;text-shadow:0 2px 18px rgba(255,255,255,.9)}
.universal-story,.people-story,.connected-story{position:relative;isolation:isolate;max-width:var(--page-max)!important}.universal-story{min-height:100svh;padding:clamp(90px,10vw,150px) 0}.story-heading{position:relative;z-index:4;max-width:650px}.story-heading>span,.people-copy>span,.connected-story>div:last-child>span{color:#166de3;font-size:11px;font-weight:800;letter-spacing:.16em}.story-heading h2,.people-copy h2,.connected-story h2{margin:18px 0 14px;font:780 clamp(3.7rem,6.3vw,6.8rem)/.92 'Outfit',sans-serif;letter-spacing:-.065em}.story-heading p,.people-copy p,.connected-story p{color:#526b84;font-size:clamp(1rem,1.45vw,1.25rem)}.story-heading a,.connected-story a{display:inline-flex;margin-top:18px;padding:13px 19px;border-radius:999px;color:white;background:#126fe9;text-decoration:none;font-weight:700;box-shadow:0 14px 38px rgba(28,118,235,.22)}
.device-world{--device-accent:#2897ff;position:relative;min-height:760px;margin-top:-55px;border-radius:52% 48% 32% 68%/48% 39% 61% 52%;background:radial-gradient(circle at 53% 47%,rgba(255,255,255,.96) 0 7%,color-mix(in srgb,var(--device-accent) 18%,transparent) 8% 22%,transparent 43%),linear-gradient(145deg,rgba(222,246,255,.78),rgba(248,242,255,.74) 52%,rgba(225,255,247,.7));overflow:hidden;box-shadow:inset 0 0 0 1px rgba(86,157,237,.13),0 45px 100px rgba(68,136,220,.12);transition:background .6s}.device-phone{--device-accent:#7756f2}.device-tv{--device-accent:#ef8a78}.device-watch{--device-accent:#39c4a4}.device-glasses{--device-accent:#8968f6}.device-tablet{--device-accent:#33b8d9}.world-radiance{position:absolute;inset:0;background:conic-gradient(from 90deg at 52% 48%,transparent,rgba(53,155,255,.13),transparent 23%,rgba(123,91,246,.13),transparent 49%,rgba(50,202,164,.14),transparent 72%);animation:world-breathe 10s ease-in-out infinite}.intelligence-core{position:absolute;z-index:3;left:50%;top:45%;width:170px;height:190px;transform:translate(-50%,-50%);display:grid;place-items:center;clip-path:polygon(50% 0,91% 22%,91% 75%,50% 100%,9% 75%,9% 22%);background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(213,242,255,.72));box-shadow:0 0 80px color-mix(in srgb,var(--device-accent) 42%,transparent);transition:.6s}.intelligence-core:before,.intelligence-core span{content:"";position:absolute;inset:16%;clip-path:inherit;border:1px solid color-mix(in srgb,var(--device-accent) 60%,white);background:linear-gradient(145deg,rgba(255,255,255,.18),color-mix(in srgb,var(--device-accent) 22%,transparent));animation:core-pulse 3.4s ease-in-out infinite}.intelligence-core b{z-index:2;color:#156fde;font-size:42px}.intelligence-core small{position:absolute;top:70%;z-index:2;color:#49637d;font-size:8px;text-align:center;letter-spacing:.12em}.device-flow{position:absolute;inset:0}.device-flow i{position:absolute;left:50%;top:45%;width:2px;height:35%;transform-origin:top;background:linear-gradient(var(--device-accent),transparent);filter:drop-shadow(0 0 6px var(--device-accent));opacity:.42}.device-flow i:nth-child(1){rotate:20deg}.device-flow i:nth-child(2){rotate:66deg}.device-flow i:nth-child(3){rotate:112deg}.device-flow i:nth-child(4){rotate:160deg}.device-flow i:nth-child(5){rotate:210deg}.device-flow i:nth-child(6){rotate:262deg}.device-flow i:nth-child(7){rotate:312deg}.device-stage{position:absolute;z-index:4;left:50%;bottom:7%;width:min(560px,70%);transform:translateX(-50%);text-align:center}.device-stage small,.device-stage b{display:block}.device-stage small{color:#176fe1;font-size:10px;letter-spacing:.13em}.device-stage b{margin-top:10px;color:#17324e;font-size:clamp(1.05rem,2vw,1.45rem)}
.device-node{position:absolute;z-index:5;width:126px;height:106px;border:0;color:#35506c;background:transparent;cursor:pointer;transition:transform .45s,opacity .45s,color .45s}.device-node i{position:relative;display:block;width:76px;height:52px;margin:auto;border:2px solid rgba(61,113,175,.38);border-radius:8px;background:linear-gradient(145deg,rgba(255,255,255,.93),rgba(197,230,255,.65));box-shadow:0 18px 40px rgba(54,125,214,.14),inset 0 0 18px rgba(50,157,255,.1);transition:.45s}.device-node span{display:block;margin-top:10px;font-size:12px;font-weight:750}.device-node[aria-pressed=true]{z-index:7;color:#0b68de;transform:translateY(-8px) scale(1.16)}.device-node[aria-pressed=true] i{border-color:var(--device-accent);box-shadow:0 20px 55px color-mix(in srgb,var(--device-accent) 28%,transparent),inset 0 0 24px color-mix(in srgb,var(--device-accent) 18%,transparent)}.node-desktop{left:8%;top:44%}.node-laptop{left:24%;top:16%}.node-tablet{right:24%;top:12%}.node-phone{right:8%;top:39%}.node-tv{right:19%;bottom:12%}.node-watch{left:22%;bottom:7%}.node-glasses{left:44%;top:4%}.node-laptop i{transform:perspective(100px) rotateX(-12deg)}.node-tablet i{width:48px;height:65px}.node-phone i{width:30px;height:62px;border-radius:9px}.node-tv i{width:86px}.node-watch i{width:35px;height:42px;border-radius:12px}.node-glasses i{width:70px;height:25px;border-radius:40% 40% 25% 25%}.node-glasses i:after{content:"";position:absolute;left:50%;top:6px;width:2px;height:8px;background:#8fb5df}
.people-story{display:grid;grid-template-columns:minmax(320px,.72fr) minmax(650px,1.28fr);gap:clamp(40px,6vw,100px);align-items:center;min-height:100svh;padding:clamp(90px,10vw,150px) 0}.people-copy h2{font-size:clamp(3.5rem,5.4vw,6rem)}.people-copy strong{display:block;min-height:64px;margin-top:40px;color:#176ee1;font-size:clamp(1.2rem,2vw,1.65rem)}.people-world{--person-a:#2d91f5;--person-b:#5ad3bd}.person-creator{--person-a:#8a61f2;--person-b:#f09484}.person-developer{--person-a:#247cf0;--person-b:#866af4}.person-professional{--person-a:#2d91f5;--person-b:#54c8d4}.person-business{--person-a:#4056d9;--person-b:#64bde9}.person-family{--person-a:#f08d7c;--person-b:#59c7af}.person-senior{--person-a:#5e86d9;--person-b:#efac82}.person-accessibility{--person-a:#775bea;--person-b:#3fc6a5}.persona-environment{position:relative;min-height:650px;border-radius:44% 56% 55% 45%/45% 39% 61% 55%;background:radial-gradient(circle at 48% 38%,rgba(255,255,255,.98),color-mix(in srgb,var(--person-a) 15%,white) 30%,color-mix(in srgb,var(--person-b) 14%,white) 67%,#fff);overflow:hidden;box-shadow:inset 0 0 0 1px rgba(76,144,226,.12),0 40px 100px rgba(64,130,220,.1);transition:background .6s}.persona-environment>small{position:absolute;right:8%;top:9%;color:var(--person-a);font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.human-form{position:absolute;z-index:3;left:16%;bottom:8%;width:210px;height:430px;filter:drop-shadow(0 28px 35px rgba(49,107,184,.18))}.human-form i{position:absolute;left:63px;top:0;width:88px;height:100px;border-radius:50%;background:linear-gradient(145deg,#ffe4d3,#dca88f)}.human-form span{position:absolute;left:24px;top:92px;width:170px;height:330px;border-radius:48% 48% 18% 18%;background:linear-gradient(155deg,var(--person-a),var(--person-b))}.adaptive-space{position:absolute;right:6%;top:21%;width:58%;height:62%;transform:perspective(900px) rotateY(-9deg)}.adaptive-space i,.adaptive-space b{position:absolute;border:1px solid color-mix(in srgb,var(--person-a) 45%,white);background:rgba(255,255,255,.58);backdrop-filter:blur(16px);box-shadow:0 22px 55px color-mix(in srgb,var(--person-a) 12%,transparent);transition:.55s}.adaptive-space i:nth-child(1){inset:0 0 34% 12%;border-radius:26px}.adaptive-space i:nth-child(2){left:0;right:48%;bottom:0;height:30%;border-radius:18px}.adaptive-space i:nth-child(3){right:0;bottom:0;width:43%;height:30%;border-radius:18px}.adaptive-space b{left:23%;top:14%;width:42%;height:8px;border:0;background:linear-gradient(90deg,var(--person-a),var(--person-b))}.person-creator .adaptive-space{transform:perspective(900px) rotateY(-3deg) rotateZ(2deg)}.person-developer .adaptive-space i:nth-child(1){background:linear-gradient(145deg,#e9f4ff,#f1edff)}.person-senior .adaptive-space{transform:scale(1.08)}.person-accessibility .adaptive-space i{border-width:3px}.persona-selector{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-top:24px}.persona-selector button{padding:10px 14px;border:1px solid rgba(82,146,220,.18);border-radius:999px;color:#4b647e;background:rgba(255,255,255,.8);cursor:pointer}.persona-selector button[aria-pressed=true]{color:#fff;border-color:transparent;background:linear-gradient(90deg,var(--person-a),var(--person-b));box-shadow:0 12px 28px color-mix(in srgb,var(--person-a) 22%,transparent)}
.connected-story{display:grid;grid-template-columns:1fr 1fr;gap:clamp(50px,8vw,120px);align-items:center;min-height:82svh;padding:clamp(90px,10vw,150px) 0}.connection-visual{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:center;min-height:460px;padding:50px;border-radius:48% 52% 46% 54%;background:linear-gradient(145deg,#e5f6ff,#faf4ff 55%,#e7fff8);box-shadow:inset 0 0 0 1px rgba(82,151,231,.13)}.connection-visual i{width:100%;height:2px;background:linear-gradient(90deg,#3298f7,#8464ef,#4bc9ad);filter:drop-shadow(0 0 7px #52aaf5)}.connection-visual b{display:grid;place-items:center;width:90px;height:110px;clip-path:polygon(50% 0,95% 25%,95% 75%,50% 100%,5% 75%,5% 25%);color:#fff;background:linear-gradient(145deg,#208af4,#785bed,#43c8ad);font-size:34px}.connection-person{width:78px;height:170px;border-radius:45% 45% 20% 20%;background:linear-gradient(#f2c0a3 0 28%,#377fe4 29%)}.connection-device{width:130px;height:90px;border:3px solid #4d8edc;border-radius:10px;background:linear-gradient(145deg,#fff,#cde9ff);box-shadow:0 20px 40px rgba(50,125,215,.16)}.connected-story h2{font-size:clamp(3rem,4.8vw,5rem)}
@keyframes world-breathe{50%{transform:scale(1.08) rotate(4deg);opacity:.75}}@keyframes core-pulse{50%{transform:scale(.88);opacity:.55}}@media(max-width:1050px){.people-story,.connected-story{grid-template-columns:1fr}.device-world{margin-top:30px}.people-copy{max-width:720px}.connection-visual{order:2}}@media(max-width:700px){.cinematic-v24 .living-opening{width:calc(100% + 40px)!important;margin-left:-20px;padding-inline:20px}.cinematic-v24 .hero-field{background-position:62% center}.cinematic-v24 .intelligence-environment{opacity:.45}.universal-story{padding-top:90px}.story-heading h2,.people-copy h2{font-size:clamp(3.1rem,14vw,4.5rem)}.device-world{min-height:680px;margin-inline:-12px;border-radius:32px}.intelligence-core{top:40%;width:125px;height:145px}.device-flow i{top:40%;height:39%}.device-node{width:84px;height:90px}.device-node i{width:56px;height:39px}.device-node span{font-size:10px}.node-desktop{left:1%;top:42%}.node-laptop{left:10%;top:17%}.node-tablet{right:10%;top:12%}.node-phone{right:0;top:39%}.node-tv{right:4%;bottom:14%}.node-watch{left:7%;bottom:11%}.node-glasses{left:39%;top:2%}.node-tablet i{width:38px;height:51px}.node-phone i{width:25px;height:50px}.node-watch i{width:30px;height:36px}.device-stage{bottom:3%;width:82%}.people-story{padding-block:90px}.persona-environment{min-height:540px;border-radius:32px}.human-form{left:3%;bottom:2%;transform:scale(.72);transform-origin:bottom left}.adaptive-space{right:2%;width:72%;height:58%}.persona-selector{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}.persona-selector button{flex:none}.connected-story{padding-block:85px}.connection-visual{min-height:300px;padding:24px}.connection-visual b{width:62px;height:78px}.connection-person{width:50px;height:115px}.connection-device{width:75px;height:55px}}
@media(prefers-reduced-motion:reduce){.world-radiance,.intelligence-core:before,.intelligence-core span{animation:none}.device-node,.adaptive-space,.persona-environment{transition:none}}
/* Main Ten Features v29 */
.feature-home{--feature-blue:#1784f5;--feature-violet:#7659ef;--feature-mint:#39c7a5;--feature-peach:#f0937f}.feature-rail{position:sticky;z-index:20;top:68px;display:flex;gap:4px;width:max-content;max-width:calc(100vw - 40px);margin:0 auto 70px;padding:8px;border:1px solid rgba(82,151,229,.16);border-radius:999px;background:rgba(251,253,255,.88);box-shadow:0 18px 50px rgba(42,111,196,.1);backdrop-filter:blur(20px);overflow-x:auto}.feature-rail a{display:flex;gap:7px;padding:9px 12px;border-radius:999px;color:#176bd8;text-decoration:none;font-size:11px;font-weight:800;white-space:nowrap}.feature-rail a:hover,.feature-rail a:focus-visible{color:#fff;background:#176fe1}.feature-rail span{color:inherit;font-weight:650}.main-feature{position:relative;isolation:isolate;display:grid;grid-template-columns:minmax(320px,.72fr) minmax(620px,1.28fr);gap:clamp(50px,7vw,120px);align-items:center;min-height:92svh;max-width:var(--page-max)!important;padding:clamp(85px,10vw,145px) 0;scroll-margin-top:120px}.main-feature.feature-reverse{grid-template-columns:minmax(620px,1.28fr) minmax(320px,.72fr)}.main-feature.feature-reverse .feature-copy{order:2}.main-feature.feature-reverse .feature-scene{order:1}.main-feature:before{content:"";position:absolute;z-index:-2;width:64%;height:70%;border-radius:50%;background:radial-gradient(circle,rgba(41,153,248,.1),rgba(116,86,237,.055) 38%,transparent 70%);filter:blur(12px);pointer-events:none}.main-feature:nth-of-type(odd):before{right:-12%;top:13%}.main-feature:nth-of-type(even):before{left:-12%;top:12%}.feature-copy{position:relative;z-index:3}.feature-number{display:block;color:#176ddd;font-size:10px;font-weight:850;letter-spacing:.15em}.feature-copy>em{display:inline-flex;margin-top:17px;padding:6px 9px;border:1px solid rgba(35,127,235,.2);border-radius:999px;color:#286dad;background:rgba(235,247,255,.76);font-size:9px;font-style:normal;font-weight:850;letter-spacing:.12em}.feature-copy h2{margin:20px 0 18px;font:780 clamp(3rem,5vw,5.7rem)/.94 'Outfit',sans-serif;letter-spacing:-.062em}.feature-copy p{max-width:590px;color:#536b84;font-size:clamp(1rem,1.25vw,1.16rem);line-height:1.72}.feature-action{display:inline-flex;margin-top:25px;padding:12px 17px;border:1px solid rgba(20,110,225,.15);border-radius:999px;color:#fff;background:linear-gradient(100deg,#1475ec,#6a5cea);box-shadow:0 14px 35px rgba(33,107,219,.2);text-decoration:none;font-weight:750;cursor:pointer}.feature-controls{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px}.feature-controls button{padding:10px 14px;border:1px solid rgba(75,145,226,.18);border-radius:999px;color:#45607c;background:rgba(255,255,255,.78);cursor:pointer}.feature-controls button[aria-pressed=true]{color:#fff;border-color:transparent;background:linear-gradient(90deg,#177bee,#755bea);box-shadow:0 10px 28px rgba(44,112,224,.2)}.feature-scene{position:relative;min-height:610px;overflow:hidden;border:1px solid rgba(81,155,236,.16);border-radius:42px;background:linear-gradient(145deg,rgba(229,247,255,.82),rgba(255,255,255,.9) 48%,rgba(243,235,255,.8));box-shadow:0 40px 100px rgba(59,126,213,.12),inset 0 1px #fff}
.boot-scene{display:grid;place-items:center;background:radial-gradient(circle at 50% 47%,rgba(255,255,255,.96),rgba(216,243,255,.78) 28%,rgba(240,231,255,.72) 58%,#f9fcff)}.boot-power{position:absolute;z-index:4;left:50%;top:35%;display:grid;place-items:center;width:124px;height:150px;transform:translate(-50%,-50%);clip-path:polygon(50% 0,95% 24%,95% 76%,50% 100%,5% 76%,5% 24%);color:#fff;background:linear-gradient(145deg,#8bbcf0,#9885e5);transition:.7s}.boot-power i{position:absolute;inset:12%;clip-path:inherit;background:rgba(255,255,255,.18)}.boot-power b{z-index:2;font-size:34px}.boot-scene.active .boot-power{background:linear-gradient(145deg,#1889f5,#7758ed,#3bc5a4);box-shadow:0 0 85px rgba(38,151,245,.48);transform:translate(-50%,-50%) scale(1.08)}.boot-path{position:absolute;left:50%;top:35%;width:2px;height:34%;transform-origin:top;background:linear-gradient(#258cf4,transparent);opacity:.12;transition:.7s}.boot-path.one{rotate:52deg}.boot-path.two{rotate:-52deg}.boot-scene.active .boot-path{opacity:.85;filter:drop-shadow(0 0 7px #238cf3)}.boot-desktop{position:absolute;left:12%;right:12%;bottom:8%;height:220px;border:1px solid rgba(58,130,220,.22);border-radius:24px;background:rgba(255,255,255,.64);backdrop-filter:blur(16px);transform:translateY(55px) scale(.9);opacity:.28;transition:.8s}.boot-scene.active .boot-desktop{transform:none;opacity:1}.boot-desktop header{display:flex;align-items:center;gap:10px;padding:12px 16px;border-bottom:1px solid rgba(66,139,225,.12)}.boot-desktop header span{width:8px;height:8px;border-radius:50%;background:#42c7a8}.boot-desktop header small{color:#47719c;font-size:8px;letter-spacing:.12em}.boot-desktop main{display:grid;grid-template-columns:1.25fr .75fr;gap:12px;padding:18px}.boot-desktop main i{min-height:58px;border-radius:13px;background:linear-gradient(145deg,rgba(196,228,255,.75),rgba(255,255,255,.82))}.boot-desktop main i:first-child{grid-row:span 2;min-height:130px}.boot-caption{position:absolute;left:25px;top:25px;color:#2f6fae;font-size:11px;font-weight:800;letter-spacing:.08em}
.main-feature .living-desktop{min-height:610px;width:100%;transform:none}.main-feature .living-desktop main{min-height:530px}.desktop-focus .fluid-pane:not(.large){opacity:.2;transform:scale(.86)}.desktop-restore .fluid-pane.large{transform:translate(8%,8%);width:72%}.desktop-restore .fluid-pane.assistant{transform:translate(-18%,-6%)}
.persona-scene{--persona-a:#258cf3;--persona-b:#48c8ae}.persona-creator{--persona-a:#8a5dea;--persona-b:#f18c7b}.persona-developer{--persona-a:#256fe5;--persona-b:#7659eb}.persona-professional{--persona-a:#267edc;--persona-b:#3ebbc2}.persona-silhouette{position:absolute;z-index:3;left:9%;bottom:0;width:220px;height:470px;filter:drop-shadow(0 30px 40px rgba(43,99,173,.18))}.persona-silhouette i{position:absolute;left:65px;top:0;width:90px;height:100px;border-radius:50%;background:linear-gradient(145deg,#ffe2ce,#d9a184)}.persona-silhouette span{position:absolute;left:20px;top:92px;width:180px;height:370px;border-radius:46% 46% 17% 17%;background:linear-gradient(155deg,var(--persona-a),var(--persona-b));transition:.6s}.persona-workspace{position:absolute;right:5%;top:13%;width:68%;height:70%;transform:perspective(1000px) rotateY(-7deg);transition:.6s}.persona-workspace div{position:absolute;border:1px solid color-mix(in srgb,var(--persona-a) 42%,white);border-radius:24px;background:rgba(255,255,255,.62);box-shadow:0 22px 60px color-mix(in srgb,var(--persona-a) 14%,transparent);backdrop-filter:blur(18px);transition:.6s}.persona-workspace div:nth-child(1){inset:0 0 35% 11%}.persona-workspace div:nth-child(2){left:0;right:53%;bottom:0;height:29%}.persona-workspace div:nth-child(3){right:0;bottom:0;width:47%;height:29%}.persona-workspace b{position:absolute;left:24%;top:16%;width:43%;height:8px;background:linear-gradient(90deg,var(--persona-a),var(--persona-b))}.persona-creator .persona-workspace{transform:rotate(2deg)}.persona-developer .persona-workspace div:first-child{background:linear-gradient(145deg,#e9f4ff,#f1edff)}.persona-scene>strong{position:absolute;z-index:5;right:7%;bottom:5%;color:var(--persona-a);font-size:20px}
.memory-scene{background:linear-gradient(130deg,#eef8ff,#fff 48%,#f4edff)}.memory-past,.memory-now{position:absolute;padding:27px;border:1px solid rgba(74,146,229,.18);background:rgba(255,255,255,.7);backdrop-filter:blur(16px);transition:.6s}.memory-past{left:7%;top:15%;width:37%;height:44%;border-radius:45% 55% 48% 52%}.memory-now{right:6%;bottom:12%;width:44%;height:42%;border-radius:28px}.memory-past small,.memory-past b,.memory-now small,.memory-now b,.memory-now span{display:block}.memory-past small,.memory-now small{color:#1774e4;font-size:9px;letter-spacing:.13em}.memory-past b,.memory-now b{margin:15px 0;font-size:20px}.memory-past i{display:inline-block;width:20%;height:35%;margin:12px 4px;background:linear-gradient(#badefa,#fff);transition:.5s}.memory-stream{position:absolute;left:39%;top:42%;right:37%;height:3px;background:linear-gradient(90deg,#2b90f4,#7b62ed)}.memory-stream i{position:absolute;width:10px;height:10px;border-radius:50%;background:#45c9af;animation:memory-travel 2.4s linear infinite}.memory-stream i:nth-child(2){animation-delay:.8s}.memory-stream i:nth-child(3){animation-delay:1.6s}.memory-1 .memory-past{transform:translateY(20px) rotate(-2deg)}.memory-2 .memory-past{transform:translateY(35px) scale(.92)}
.workplace-scene{--place-a:#278ef0;--place-b:#48c4a8;background:radial-gradient(circle at 50% 45%,#fff,color-mix(in srgb,var(--place-a) 14%,white) 48%,color-mix(in srgb,var(--place-b) 12%,white))}.place-create{--place-a:#885deb;--place-b:#ef907d}.place-develop{--place-a:#2477e8;--place-b:#7358e8}.place-business{--place-a:#405ed6;--place-b:#4eb3dc}.place-focus{--place-a:#23a993;--place-b:#7b67e4}.personal-base{position:absolute;left:11%;right:11%;bottom:8%;height:180px;padding:25px;border:1px solid color-mix(in srgb,var(--place-a) 35%,white);border-radius:28px;background:rgba(255,255,255,.74);box-shadow:0 30px 65px color-mix(in srgb,var(--place-a) 13%,transparent)}.personal-base b,.personal-base span{display:block}.personal-base b{color:var(--place-a)}.personal-base span{margin-top:12px;color:#597089}.workplace-layer{position:absolute;border:1px solid color-mix(in srgb,var(--place-a) 38%,white);background:rgba(255,255,255,.58);backdrop-filter:blur(17px);box-shadow:0 20px 55px color-mix(in srgb,var(--place-a) 12%,transparent);transition:.65s}.layer-one{left:8%;top:12%;width:48%;height:35%;border-radius:40px 22px 35px 20px}.layer-two{right:7%;top:19%;width:36%;height:44%;border-radius:24px 48px 26px 38px}.layer-three{left:31%;top:42%;width:35%;height:28%;border-radius:23px}.place-create .layer-one{transform:rotate(-4deg) scale(1.08)}.place-develop .layer-two{transform:translateX(-22%) scale(1.12)}.place-business .layer-three{transform:translateY(-35%) scale(1.16)}.place-focus .layer-one,.place-focus .layer-two{opacity:.18;transform:scale(.82)}.workplace-scene>strong{position:absolute;left:50%;top:7%;transform:translateX(-50%);color:var(--place-a);text-transform:capitalize}
.offline-scene{background:linear-gradient(145deg,#eaf6ff,#fff 52%,#ebfff8)}.cloud-source{position:absolute;left:9%;top:14%;width:180px;height:105px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.75);box-shadow:0 20px 55px rgba(45,127,214,.13);transition:.65s}.cloud-source i{position:absolute;width:70px;height:35px;border-radius:40px;background:#b7dcfb}.cloud-source b{z-index:2;color:#376b9f;font-size:10px}.offline-link{position:absolute;left:30%;right:34%;top:34%;height:3px;background:linear-gradient(90deg,#2890f2,#43c8a6);transition:.6s}.offline-link i{position:absolute;right:0;width:10px;height:10px;border-radius:50%;background:#43c8a6;animation:memory-travel 2s infinite}.local-core{position:absolute;right:7%;top:18%;width:260px;height:260px;display:grid;place-items:center;clip-path:polygon(50% 0,91% 23%,91% 77%,50% 100%,9% 77%,9% 23%);background:linear-gradient(145deg,#fff,#d9f7ee);box-shadow:0 0 70px rgba(52,197,162,.2);transition:.65s}.local-core span{position:absolute;inset:17%;clip-path:inherit;background:linear-gradient(145deg,#42c7a8,#2b8feb);opacity:.18}.local-core b,.local-core small{z-index:2}.local-core small{position:absolute;bottom:25%;color:#34755f}.local-tools{position:absolute;left:13%;right:13%;bottom:10%;display:flex;gap:15px}.local-tools i{flex:1;height:105px;border:1px solid rgba(67,156,226,.16);border-radius:20px;background:rgba(255,255,255,.68)}.offline .cloud-source{opacity:.16;filter:grayscale(1)}.offline .offline-link{transform:scaleX(.08);transform-origin:right}.offline .local-core{transform:scale(1.09);box-shadow:0 0 100px rgba(52,197,162,.36)}
.security-scene{background:radial-gradient(circle at 48% 47%,#fff,#edf8ff 40%,#f3edff 72%)}.protected-data{position:absolute;z-index:3;left:50%;top:43%;display:grid;place-items:center;width:145px;height:175px;transform:translate(-50%,-50%);clip-path:polygon(50% 0,92% 23%,92% 77%,50% 100%,8% 77%,8% 23%);background:linear-gradient(145deg,#218cf2,#715bea);color:#fff}.protected-data i{position:absolute;inset:15%;clip-path:inherit;border:1px solid rgba(255,255,255,.38)}.protected-data b{z-index:2;font-size:11px}.permission-boundary i{position:absolute;left:50%;top:43%;border:1px solid rgba(47,139,236,.27);border-radius:50%;transform:translate(-50%,-50%);transition:.6s}.permission-boundary i:nth-child(1){width:290px;height:290px}.permission-boundary i:nth-child(2){width:405px;height:405px;border-color:rgba(116,84,235,.2)}.permission-boundary i:nth-child(3){width:510px;height:510px;border-color:rgba(57,196,164,.2)}.permission-boundary span{position:absolute;left:50%;top:7%;transform:translateX(-50%);color:#2871b8;font-size:9px;letter-spacing:.14em}.request-signal{position:absolute;right:5%;top:38%;display:flex;align-items:center;gap:10px;color:#239b76;transition:.6s}.request-signal i{width:90px;height:3px;background:currentColor}.request-signal b{font-size:10px}.blocked .request-signal{right:16%;color:#ef786b}.blocked .permission-boundary i{border-width:3px}.edition-protection{position:absolute;left:0;right:0;bottom:6%;display:flex;justify-content:center;gap:12px}.edition-protection span{padding:8px 11px;border-radius:999px;color:#39709e;background:rgba(255,255,255,.72);font-size:9px;font-weight:800}.feature-device{grid-template-columns:minmax(280px,.55fr) minmax(700px,1.45fr)}.feature-device .device-world{min-height:720px;margin:0;border-radius:42px}
.build-scene{display:flex;align-items:center;gap:10px;padding:35px;overflow-x:auto}.build-scene>div{flex:0 0 132px;min-height:160px;padding:20px;border:1px solid rgba(69,145,228,.18);border-radius:25px;background:rgba(255,255,255,.67);opacity:.18;transform:translateY(18px);transition:.55s}.build-scene>div.active{opacity:1;transform:none;box-shadow:0 24px 55px rgba(47,127,219,.13)}.build-scene>i{flex:0 0 28px;height:3px;background:linear-gradient(90deg,#258cf2,#765bea,#43c7a7)}.build-scene small,.build-scene b{display:block}.build-scene small{color:#216fc1;font-size:8px;letter-spacing:.12em}.build-scene b{margin-top:24px}.build-scene span{display:block;height:8px;margin-top:18px;background:#badcf8}.restore-scene{background:linear-gradient(145deg,#edf8ff,#fff 48%,#f2edff)}.restore-current{position:absolute;z-index:3;left:16%;right:10%;top:13%;height:315px;padding:35px;border:1px solid rgba(59,139,230,.18);border-radius:35px;background:rgba(255,255,255,.72);box-shadow:0 32px 80px rgba(51,121,210,.12);transition:.6s}.restore-current small,.restore-current b{display:block}.restore-current small{color:#1673df;letter-spacing:.14em}.restore-current b{margin:22px 0;font-size:25px}.restore-current span{display:inline-block;width:43%;height:95px;margin-right:12px;border-radius:18px;background:linear-gradient(145deg,#cee9ff,#f0eaff);transition:.6s}.restore-track{position:absolute;left:12%;right:12%;bottom:15%;display:flex;justify-content:space-between;border-top:3px solid #bedcf6}.restore-track i{width:18px;height:18px;margin-top:-10px;border:4px solid #fff;border-radius:50%;background:#2c8eee;box-shadow:0 0 0 1px #83b8ef}.restore-history{position:absolute;left:11%;right:11%;bottom:7%;display:flex;justify-content:space-between;color:#3975ad;font-size:10px}.restore-1 .restore-current{transform:translateY(10px) scale(.97)}.restore-2 .restore-current span:last-child{transform:translateX(-25%) scale(1.12);box-shadow:0 20px 45px rgba(105,84,230,.16)}.restore-3 .restore-current{transform:translate(-5%,6%);box-shadow:0 0 75px rgba(50,195,159,.22)}
@keyframes memory-travel{from{left:0}to{left:100%}}@media(max-width:1120px){.main-feature,.main-feature.feature-reverse,.feature-device{grid-template-columns:1fr;min-height:auto;gap:45px}.main-feature.feature-reverse .feature-copy,.main-feature.feature-reverse .feature-scene{order:initial}.feature-copy{max-width:800px}.feature-scene{min-height:600px}}@media(max-width:700px){.feature-rail{top:64px;justify-content:flex-start;margin-bottom:20px}.feature-rail a{padding:8px 10px}.feature-rail span{display:none}.main-feature{padding:78px 0;gap:32px}.feature-copy h2{font-size:clamp(2.8rem,12vw,4rem)}.feature-scene{min-height:490px;border-radius:28px}.boot-desktop{left:6%;right:6%}.main-feature .living-desktop{min-height:500px}.main-feature .living-desktop main{min-height:420px}.persona-silhouette{left:-14%;transform:scale(.72);transform-origin:bottom}.persona-workspace{right:1%;width:83%}.persona-scene>strong{left:20px;right:20px;bottom:20px;font-size:16px}.memory-past{left:4%;width:47%}.memory-now{right:4%;width:50%}.memory-stream{left:42%;right:42%}.cloud-source{left:4%;transform:scale(.7);transform-origin:left}.local-core{right:3%;width:190px;height:220px}.offline-link{left:24%;right:40%}.security-scene{min-height:540px}.permission-boundary i:nth-child(3){width:400px;height:400px}.request-signal{right:1%}.feature-device .device-world{min-height:650px}.build-scene{min-height:430px;padding:22px}.build-scene>div{flex-basis:112px}.restore-current{left:6%;right:6%;padding:24px}.restore-current span{width:41%}}@media(prefers-reduced-motion:reduce){.memory-stream i,.offline-link i{animation:none}.boot-power,.boot-desktop,.workplace-layer,.restore-current{transition:none}}
/* Feature Runtime v30 */
.feature-home{position:relative}.feature-home:before{content:"";position:absolute;z-index:-1;left:50%;top:95vh;bottom:500px;width:3px;transform:translateX(-50%);background:linear-gradient(#2a91f4,18%,#765bec 43%,#3fc7a6 68%,#f09780 88%,transparent);opacity:.25;filter:drop-shadow(0 0 13px rgba(50,147,239,.45));pointer-events:none}.feature-rail a[aria-current]{color:#fff;background:linear-gradient(90deg,#1577ed,#765bea)}.feature-scene:after{content:"";position:absolute;z-index:0;inset:0;background:radial-gradient(420px circle at var(--scene-x,50%) var(--scene-y,50%),rgba(80,190,255,.18),transparent 58%);mix-blend-mode:multiply;pointer-events:none}.feature-scene>*{z-index:1}.main-feature.scene-paused *{animation-play-state:paused!important}.main-feature.scene-active .feature-copy{animation:feature-copy-in .75s cubic-bezier(.2,.75,.25,1) both}.main-feature.scene-active .feature-scene{animation:feature-scene-in .85s cubic-bezier(.2,.75,.25,1) both}.feature-scene{--scene-dx:0;--scene-dy:0}.feature-scene .boot-power,.feature-scene .local-core,.feature-scene .protected-data,.feature-scene .intelligence-core{margin-left:var(--scene-shift-x,0px);margin-top:var(--scene-shift-y,0px)}.feature-scene .boot-desktop,.feature-scene .persona-workspace,.feature-scene .memory-now,.feature-scene .adaptive-space{translate:var(--scene-back-x,0px) var(--scene-back-y,0px)}.cinematic-v24 .intelligence-environment{translate:0 var(--hero-shift,0px);scale:var(--hero-scale,1);opacity:var(--hero-opacity,.72)}.cinematic-v24 .hero-field{background-position:center calc(50% + var(--hero-bg-shift,0%))}.offline-scene:before,.security-scene:before,.build-scene:before{content:"";position:absolute;z-index:0;inset:0;background-position:center;background-size:cover;opacity:.28;filter:saturate(1.12) contrast(1.02);pointer-events:none}.offline-scene:before{background-image:linear-gradient(rgba(248,253,255,.3),rgba(248,253,255,.72)),url('/static/images/living-world/offline-intelligence-v1.jpg')}.security-scene:before{background-image:linear-gradient(rgba(248,253,255,.35),rgba(248,253,255,.7)),url('/static/images/living-world/security-boundary-v1.jpg')}.build-scene:before{background-image:linear-gradient(90deg,rgba(248,253,255,.65),rgba(248,253,255,.24),rgba(248,253,255,.68)),url('/static/images/living-world/developer-creation-v1.jpg')}.offline-scene>*:not(:before),.security-scene>*:not(:before),.build-scene>*:not(:before){z-index:2}.feature-lite .living-intelligence-layer,.feature-lite .page-aura{display:none}.feature-lite .feature-scene:after{display:none}.feature-lite .main-feature:before{filter:none}.feature-lite .offline-scene:before,.feature-lite .security-scene:before,.feature-lite .build-scene:before{opacity:.18}.feature-lite .world-radiance,.feature-lite .memory-stream i,.feature-lite .offline-link i{animation:none}.feature-lite .feature-scene{backdrop-filter:none}.feature-lite .cinematic-v24 .intelligence-environment{transform:none!important}.feature-lite .feature-home:before{filter:none}.feature-scene img{content-visibility:auto}.main-feature{content-visibility:auto;contain-intrinsic-size:auto 900px}@keyframes feature-copy-in{from{opacity:.25;translate:0 28px}to{opacity:1;translate:0 0}}@keyframes feature-scene-in{from{opacity:.35;translate:0 45px;scale:.97}to{opacity:1;translate:0 0;scale:1}}@media(max-width:700px){.feature-home:before{left:20px}.main-feature{contain-intrinsic-size:auto 1050px}.main-feature.scene-active .feature-copy,.main-feature.scene-active .feature-scene{animation-duration:.55s}.offline-scene:before,.security-scene:before,.build-scene:before{opacity:.18}.cinematic-v24 .hero-field{background-position:62% calc(50% + var(--hero-bg-shift,0%))}}@media(prefers-reduced-motion:reduce){.main-feature.scene-active .feature-copy,.main-feature.scene-active .feature-scene{animation:none}.cinematic-v24 .intelligence-environment{translate:none;scale:1;opacity:.62}.cinematic-v24 .hero-field{background-position:center}.feature-scene:after{display:none}}
/* Consolidated Mega Menu v31 */
.language-trigger{appearance:none;border:0;background:transparent;cursor:pointer}.mega-directory-shell{padding:16px 20px 22px}.mega-directory{display:grid;grid-template-columns:210px minmax(420px,1fr) 300px;gap:24px;padding-top:18px;min-height:430px}.mega-category-tabs{display:flex;flex-direction:column;gap:3px;padding-right:16px;border-right:1px solid rgba(83,153,229,.14)}.mega-category-tabs button{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:11px 12px;border:0;border-radius:10px;color:#536980;background:transparent;text-align:left;font-size:13px;font-weight:650;cursor:pointer;transition:.2s}.mega-category-tabs button span{opacity:0;translate:-6px 0;transition:.2s}.mega-category-tabs button:hover,.mega-category-tabs button:focus-visible,.mega-category-tabs button[aria-selected=true]{color:#0e69db;background:linear-gradient(90deg,rgba(225,243,255,.9),rgba(240,235,255,.68))}.mega-category-tabs button[aria-selected=true] span{opacity:1;translate:0}.mega-link-area{min-width:0;padding:2px 0}.mega-link-area>section{height:100%}.mega-link-heading{display:grid;grid-template-columns:1fr auto;align-items:end;margin-bottom:17px;padding-bottom:15px;border-bottom:1px solid rgba(82,150,226,.13)}.mega-link-heading small{grid-column:1/-1;color:#1871dc;font-size:9px;font-weight:850;letter-spacing:.14em}.mega-link-heading h2{margin:7px 0 0;color:#17314c;font:750 24px/1 'Outfit',sans-serif}.mega-link-heading>span{color:#75889d;font-size:10px}.mega-link-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:22px;row-gap:2px}.mega-link-list a{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:37px;padding:7px 9px;border-radius:8px;color:#485e75;text-decoration:none;font-size:12.5px;transition:.2s}.mega-link-list a span{opacity:0;color:#1674e2;translate:-5px 0;transition:.2s}.mega-link-list a:hover,.mega-link-list a:focus-visible{color:#0d67d8;background:rgba(225,242,255,.64);padding-left:13px}.mega-link-list a:hover span,.mega-link-list a:focus-visible span{opacity:1;translate:0}.mega-feature{--mega-a:#218df2;--mega-b:#745bea;position:relative;isolation:isolate;min-height:390px;padding:24px;border:1px solid rgba(79,155,236,.2);border-radius:22px;background:linear-gradient(155deg,rgba(232,248,255,.86),rgba(249,244,255,.83));overflow:hidden}.mega-feature-experience{--mega-a:#765bea;--mega-b:#f09780}.mega-feature-intelligence{--mega-a:#198cf0;--mega-b:#43c8a6}.mega-feature-developers{--mega-a:#2b77e5;--mega-b:#7758ed}.mega-feature-hardware{--mega-a:#2489e9;--mega-b:#38bdb4}.mega-feature-resources{--mega-a:#5367df;--mega-b:#31b798}.mega-feature>small{color:var(--mega-a);font-size:9px;font-weight:850;letter-spacing:.15em}.mega-feature h3{position:relative;z-index:2;margin:175px 0 16px;font:730 22px/1.13 'Outfit',sans-serif;letter-spacing:-.025em}.mega-feature>a{position:relative;z-index:2;display:block;padding:7px 0;color:#126bdc;text-decoration:none;font-size:12px;font-weight:750}.mega-feature .mega-secondary-cta{color:#61768d;font-weight:650}.mega-feature-world{position:absolute;z-index:1;left:16px;right:16px;top:45px;height:145px}.mega-feature-world b{position:absolute;z-index:3;left:50%;top:50%;display:grid;place-items:center;width:62px;height:72px;translate:-50% -50%;clip-path:polygon(50% 0,94% 24%,94% 76%,50% 100%,6% 76%,6% 24%);color:#fff;background:linear-gradient(145deg,var(--mega-a),var(--mega-b));box-shadow:0 0 45px color-mix(in srgb,var(--mega-a) 35%,transparent)}.mega-feature-world i{position:absolute;left:50%;top:50%;width:145px;height:1px;transform-origin:left;background:linear-gradient(90deg,var(--mega-a),transparent);animation:mega-directory-flow 3s ease-in-out infinite}.mega-feature-world i:nth-child(1){rotate:18deg}.mega-feature-world i:nth-child(2){rotate:142deg;animation-delay:.3s}.mega-feature-world i:nth-child(3){rotate:258deg;animation-delay:.6s}.mega-directory[data-menu-id=experience] .mega-feature-world i:nth-child(1){rotate:42deg}.mega-directory[data-menu-id=developers] .mega-feature-world i{height:3px}.mega-directory[data-menu-id=hardware] .mega-feature-world b{border-radius:15px;clip-path:none}.mega-directory[data-menu-id=resources] .mega-feature-world:after{content:"";position:absolute;left:15%;right:15%;bottom:10px;height:3px;background:linear-gradient(90deg,var(--mega-a),var(--mega-b));box-shadow:0 -17px rgba(67,167,218,.25),0 -34px rgba(92,103,224,.16)}@keyframes mega-directory-flow{50%{scale:1.16 1;opacity:.56}}@media(max-width:1280px) and (min-width:1101px){.mega-directory{grid-template-columns:180px minmax(380px,1fr) 250px;gap:18px}.mega-link-list{column-gap:10px}.mega-link-list a{font-size:11.5px}.mega-feature{padding:20px}.mega-feature h3{font-size:19px}.header-actions{gap:7px}.header-text-link{font-size:.76rem}.nav-item{padding-inline:6px}}
@media(max-width:1100px){.mega-directory-shell{padding-top:8px}.mobile-open .mega-directory{display:grid;grid-template-columns:1fr;gap:12px;min-height:0}.mobile-open .mega-category-tabs{display:flex;flex-direction:row;overflow-x:auto;padding:0 0 10px;border:0;border-bottom:1px solid rgba(83,153,229,.14)}.mobile-open .mega-category-tabs button{flex:0 0 auto;width:auto;min-height:44px;padding:10px 13px;border:1px solid rgba(80,151,230,.12);border-radius:999px;background:rgba(255,255,255,.6)}.mobile-open .mega-category-tabs button span{display:none}.mobile-open .mega-link-area{padding:4px 0}.mobile-open .mega-link-heading{position:sticky;top:-16px;z-index:3;padding-top:12px;background:linear-gradient(#f8fcff 78%,transparent)}.mobile-open .mega-link-list{grid-template-columns:repeat(2,minmax(0,1fr))}.mobile-open .mega-link-list a{min-height:44px;font-size:13px}.mobile-open .mega-feature{min-height:280px;margin-top:8px}.mobile-open .mega-feature-world{height:110px}.mobile-open .mega-feature h3{margin-top:130px}.mobile-open .mega-trigger{order:0}.mobile-open .mega-directory-shell{order:1}}
@media(max-width:600px){.mobile-open .mega-link-list{grid-template-columns:1fr}.mobile-open .mega-feature{min-height:260px;padding:20px}.mega-link-heading h2{font-size:21px}.mega-directory-shell{padding-inline:12px}.header-actions{gap:6px}.language-trigger{display:none}.mega-shell-head span{max-width:210px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}@media(prefers-reduced-motion:reduce){.mega-feature-world i{animation:none}}
/* Download panel v32 */
.download-menu{position:relative}.download-trigger{appearance:none;border:0;cursor:pointer;white-space:nowrap}.download-panel{position:absolute;z-index:1100;right:0;top:calc(100% + 14px);width:340px;padding:24px;border:1px solid rgba(80,154,234,.22);border-radius:22px;background:radial-gradient(300px circle at 80% 0,rgba(111,91,237,.13),transparent 55%),rgba(250,253,255,.96);box-shadow:0 28px 70px rgba(55,120,208,.14),inset 0 1px #fff;backdrop-filter:blur(24px)}.download-panel>small{color:#176fdd;font-size:9px;font-weight:850;letter-spacing:.15em}.download-panel h2{margin:11px 0 17px;color:#17314c;font:740 22px/1.08 'Outfit',sans-serif}.download-panel nav{display:grid;grid-template-columns:1fr 1fr;gap:3px 12px;padding:14px 0;border-block:1px solid rgba(83,150,225,.13)}.download-panel nav a{padding:8px 5px;border-radius:7px;color:#536980;text-decoration:none;font-size:11.5px}.download-panel nav a:hover,.download-panel nav a:focus-visible{color:#0f68d8;background:#e9f5ff}.download-panel .download-primary,.download-panel .download-secondary{display:block;text-decoration:none;font-weight:750}.download-primary{margin-top:17px;padding:11px 14px;border-radius:999px;color:#fff;background:linear-gradient(90deg,#1678ed,#735bea);text-align:center}.download-secondary{margin-top:10px;color:#426d99;text-align:center;font-size:12px}@media(max-width:700px){.download-menu{display:none}}
/* Production availability panels v33 */
.utility-menu{position:relative}.utility-panel{position:absolute;z-index:1100;right:0;top:calc(100% + 14px);width:300px;padding:21px;border:1px solid rgba(80,154,234,.2);border-radius:19px;background:rgba(250,253,255,.97);box-shadow:0 25px 65px rgba(54,120,206,.13),inset 0 1px #fff;backdrop-filter:blur(22px)}.utility-panel>small{color:#176fdd;font-size:9px;font-weight:850;letter-spacing:.14em}.language-panel button{display:flex;align-items:center;justify-content:space-between;width:100%;margin-top:10px;padding:11px;border:1px solid rgba(75,145,225,.13);border-radius:10px;color:#344f6a;background:#fff;text-align:left}.language-panel button[aria-current]{border-color:rgba(27,119,230,.3);background:#eaf6ff}.language-panel button:disabled{opacity:.58}.language-panel button b{color:#2474bd;font-size:9px;text-transform:uppercase;letter-spacing:.08em}.utility-panel p{margin:14px 0 0;color:#63788e;font-size:11px;line-height:1.55}.account-panel h2{margin:11px 0;font:730 21px/1.08 'Outfit',sans-serif}.account-panel>a{display:block;margin-top:12px;color:#146bd8;text-decoration:none;font-size:12px;font-weight:700}.availability-page{max-width:var(--content-max);margin:auto}.availability-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:40px 0 80px}.availability-grid article{min-height:330px;padding:38px}.availability-grid small,.release-requirements>span,.availability-cta span{color:#176fdd;font-size:10px;font-weight:850;letter-spacing:.14em}.availability-grid h2{margin:28px 0 16px;font:750 36px/1 'Outfit',sans-serif}.availability-grid p{color:#5b7087;line-height:1.7}.availability-grid .action-btn-glow{display:inline-flex;margin-top:24px}.availability-links{display:flex;flex-direction:column;gap:10px;margin-top:25px}.availability-links a{color:#146bd8;text-decoration:none;font-weight:700}.release-requirements{margin:80px 0;padding:55px;border-radius:34px;background:linear-gradient(145deg,#e9f7ff,#fff 50%,#f2edff)}.release-requirements h2{margin:18px 0 25px;font:760 clamp(2.4rem,4vw,4rem)/1 'Outfit',sans-serif}.release-requirements ul{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 35px;padding-left:20px;color:#526a82}.release-status-line{display:grid;grid-template-columns:repeat(3,1fr);margin:60px 0 90px;border-block:1px solid rgba(71,143,223,.13)}.release-status-line article{min-height:330px;padding:35px;border-right:1px solid rgba(71,143,223,.13)}.release-status-line article:last-child{border:0}.release-status-line>article>span{color:#a7c9eb;font-size:54px;font-weight:800}.release-status-line small{display:block;margin:25px 0 12px;color:#176fdd;font-weight:850;letter-spacing:.12em}.release-status-line h2{font:730 28px/1.05 'Outfit',sans-serif}.release-status-line p{color:#5b7188;line-height:1.65}.availability-cta{display:flex;align-items:flex-end;justify-content:space-between;gap:45px;margin:80px 0;padding:50px;border-radius:30px;background:linear-gradient(145deg,#edf8ff,#fff)}.availability-cta h2{max-width:700px;margin-top:15px;font:750 clamp(2.3rem,4vw,4rem)/1 'Outfit',sans-serif}.availability-cta>div:last-child{display:flex;flex-direction:column;gap:10px}.availability-cta a{color:#146bd8;text-decoration:none;font-weight:750}@media(max-width:760px){.utility-menu{display:none}.availability-grid,.release-status-line{grid-template-columns:1fr}.release-requirements{padding:34px 24px}.release-requirements ul{grid-template-columns:1fr}.release-status-line article{border-right:0;border-bottom:1px solid rgba(71,143,223,.13)}.availability-cta{align-items:flex-start;flex-direction:column;padding:34px 24px}}
/* Original Dynamic Hero Engine v38 — no third-party template source used. */
.cinematic-v24 .dynamic-hero{position:relative;isolation:isolate;display:flex!important;align-items:center;max-width:none!important;width:calc(100% + (var(--page-padding)*2));min-height:calc(100svh - 68px);margin-left:calc(var(--page-padding)*-1);padding:clamp(74px,10vh,118px) var(--page-padding) clamp(105px,13vh,145px);overflow:hidden;background:linear-gradient(115deg,#fbfdff 0%,#f2f8ff 43%,#f8f2ff 72%,#effdf9 100%)}
.dynamic-hero-stage{position:absolute;z-index:0;inset:0;overflow:hidden;pointer-events:none}
.dynamic-hero-stage:before{content:"";position:absolute;z-index:1;inset:0;background:linear-gradient(90deg,rgba(250,253,255,.97) 0%,rgba(250,253,255,.86) 28%,rgba(250,253,255,.28) 53%,rgba(250,253,255,.04) 78%),linear-gradient(180deg,rgba(255,255,255,.08) 58%,#f8faff 100%);pointer-events:none}
.dynamic-hero-stage canvas{display:block;width:100%;height:100%;max-width:none;opacity:0;transform:scale(1.025);transition:opacity 1.2s ease,transform 1.8s cubic-bezier(.2,.75,.25,1)}
.dynamic-ready .dynamic-hero-stage canvas{opacity:1;transform:none}
.dynamic-hero-vignette{position:absolute;z-index:2;inset:0;background:radial-gradient(ellipse at 73% 47%,transparent 0 32%,rgba(250,253,255,.12) 54%,rgba(250,253,255,.8) 100%);mix-blend-mode:screen;pointer-events:none}
.cinematic-v24 .dynamic-hero-copy{position:relative;z-index:3;width:min(650px,49vw);max-width:650px;padding:0;text-shadow:0 2px 24px rgba(255,255,255,.96)}
.cinematic-v24 .dynamic-hero-copy .living-eyebrow{display:inline-flex;margin-bottom:clamp(20px,3vh,32px);font-size:.74rem;font-weight:750;letter-spacing:.18em;color:#316d9f}
.cinematic-v24 .dynamic-hero-copy h1{max-width:10ch!important;margin:0;font-size:clamp(4rem,6.15vw,6.75rem)!important;line-height:.88;letter-spacing:-.072em;color:#10233e}
.cinematic-v24 .dynamic-hero-copy h1 em{display:block;color:transparent;background:linear-gradient(95deg,#167de9,#22bfb1 48%,#745ce9);background-clip:text;-webkit-background-clip:text;font-style:normal}
.cinematic-v24 .dynamic-hero-copy>p{max-width:570px;margin:clamp(25px,3.5vh,38px) 0 0;font-size:clamp(1rem,1.35vw,1.2rem);line-height:1.65;color:#405d78}
.dynamic-hero-copy .living-actions{margin-top:clamp(24px,3.6vh,38px)}
.dynamic-hero-controls{position:absolute;z-index:4;right:var(--page-padding);bottom:34px;display:grid;grid-template-columns:auto auto auto;align-items:center;gap:13px;padding:9px 10px 9px 14px;border:1px solid rgba(77,132,204,.18);border-radius:999px;background:rgba(255,255,255,.67);box-shadow:0 17px 50px rgba(53,92,155,.12);backdrop-filter:blur(22px);color:#42617e}
.dynamic-hero-controls .scene-index{font-variant-numeric:tabular-nums;font-size:.69rem;letter-spacing:.1em;color:#3983b8}
.dynamic-hero-controls strong{max-width:220px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.78rem;font-weight:650;color:#29465f}
.dynamic-hero-controls button{padding:.55rem .8rem;border:1px solid rgba(77,132,204,.17);border-radius:999px;background:#fff;color:#315879;font:inherit;font-size:.72rem;cursor:pointer}
.dynamic-hero-fallback{position:absolute;inset:0;padding:30vh 8vw 0 55vw;background:linear-gradient(135deg,#e3f7ff,#f0eaff 58%,#eafff7);color:#54708c}
.dynamic-fallback .dynamic-hero-stage{background:linear-gradient(125deg,#edf9ff,#f2eeff 56%,#eafff7)}
@media(max-width:1050px){.cinematic-v24 .dynamic-hero{min-height:820px;align-items:flex-start}.cinematic-v24 .dynamic-hero-copy{width:min(720px,83vw);max-width:720px;padding-top:40px}.dynamic-hero-stage:before{background:linear-gradient(180deg,rgba(250,253,255,.94) 0%,rgba(250,253,255,.72) 42%,rgba(250,253,255,.04) 72%,#f8faff 100%)}.dynamic-hero-stage canvas{transform:scale(1.1) translate(0,12%)}.dynamic-ready .dynamic-hero-stage canvas{transform:translate(0,10%)} }
@media(max-width:700px){.cinematic-v24 .dynamic-hero{width:calc(100% + 40px)!important;min-height:calc(100svh - 64px);margin-left:-20px;padding:52px 20px 120px}.cinematic-v24 .dynamic-hero-copy{width:100%;padding-top:0}.cinematic-v24 .dynamic-hero-copy .living-eyebrow{max-width:290px;font-size:.65rem;line-height:1.5}.cinematic-v24 .dynamic-hero-copy h1{max-width:9ch!important;font-size:clamp(3.45rem,16.1vw,5.1rem)!important;line-height:.91}.cinematic-v24 .dynamic-hero-copy>p{max-width:35ch;font-size:.99rem;line-height:1.58}.dynamic-hero-stage{top:22%}.dynamic-hero-stage:before{background:linear-gradient(180deg,rgba(250,253,255,.9),rgba(250,253,255,.44) 33%,rgba(250,253,255,.03) 67%,#f8faff 96%)}.dynamic-hero-stage canvas{transform:scale(1.3) translate(0,14%)}.dynamic-ready .dynamic-hero-stage canvas{transform:scale(1.18) translate(0,12%)}.dynamic-hero-controls{left:20px;right:20px;bottom:24px;grid-template-columns:auto minmax(0,1fr) auto}.dynamic-hero-controls strong{max-width:none}.dynamic-hero-controls button{padding:.5rem .65rem}}
@media(prefers-reduced-motion:reduce){.dynamic-hero-stage canvas{transition:none!important;transform:none!important}.dynamic-hero-controls button{display:none}}
/* Footer Experience Center v39 */
.footer-experience{--footer-ink:#102943;--footer-muted:#58728b;--footer-line:rgba(65,126,194,.16);position:relative;isolation:isolate;overflow:hidden;margin-top:clamp(50px,8vw,130px);border-top:1px solid var(--footer-line);background:linear-gradient(180deg,#fbfdff 0%,#f1f8ff 33%,#faf7ff 66%,#effbf8 100%);color:var(--footer-ink)}
.footer-experience:before{content:"";position:absolute;z-index:-1;inset:0;background:radial-gradient(650px circle at var(--footer-x,72%) var(--footer-y,12%),rgba(58,196,232,.15),transparent 60%),radial-gradient(720px circle at 17% 52%,rgba(127,94,242,.09),transparent 65%);pointer-events:none}
.footer-canvas-width{width:min(1560px,calc(100% - 2*var(--page-padding)));margin-inline:auto;padding-block:clamp(82px,9vw,145px);border-bottom:1px solid var(--footer-line)}
.footer-experience section>header{max-width:780px;margin-bottom:clamp(38px,5vw,70px)}
.footer-experience section>header>span,.footer-living-copy>span{display:block;margin-bottom:15px;color:#287aaa;font-size:.72rem;font-weight:750;letter-spacing:.18em}
.footer-experience section>header h2,.footer-living-copy h2{margin:0;color:var(--footer-ink);font-size:clamp(2.35rem,4.4vw,4.8rem);line-height:.96;letter-spacing:-.055em}
.footer-experience section>header p{color:var(--footer-muted);font-size:1.03rem;line-height:1.65}
.footer-living{position:relative;display:flex;align-items:center;min-height:min(900px,92svh);padding:clamp(80px,10vh,130px) max(var(--page-padding),calc((100% - 1560px)/2));overflow:hidden;border-bottom:1px solid var(--footer-line)}
.footer-living canvas{position:absolute;z-index:-1;inset:0;width:100%;height:100%;pointer-events:none}
.footer-living-copy{position:relative;z-index:3;width:min(680px,52vw)}
.footer-living-copy h2{max-width:11ch;font-size:clamp(3.4rem,5.8vw,6.5rem)}
.footer-living-copy>p{max-width:560px;margin:26px 0;color:var(--footer-muted);font-size:clamp(1.05rem,1.4vw,1.24rem);line-height:1.65}
.footer-living-copy>div{display:flex;flex-wrap:wrap;gap:11px}.footer-living-copy a{padding:13px 19px;border:1px solid rgba(43,126,214,.2);border-radius:999px;background:rgba(255,255,255,.78);box-shadow:0 15px 40px rgba(58,111,177,.09);color:#155c9d;font-weight:650;text-decoration:none}.footer-living-copy a:first-child{background:linear-gradient(105deg,#137ae8,#6259df);color:#fff}.footer-living-copy small{display:block;margin-top:18px;color:#688096}
.footer-living-visual{position:absolute;z-index:1;right:4%;top:12%;width:min(690px,50vw);height:76%;perspective:1000px}.footer-core{position:absolute;left:48%;top:44%;display:grid;place-items:center;width:98px;height:118px;border:1px solid rgba(54,173,205,.34);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(175,243,238,.65));box-shadow:0 25px 80px rgba(48,169,197,.24),inset 0 1px #fff;color:#238bb5;font-size:2rem;font-style:normal}.footer-device,.footer-desktop-layer{position:absolute;border:1px solid rgba(78,126,217,.22);background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(225,238,255,.55));box-shadow:0 28px 75px rgba(62,99,164,.14);backdrop-filter:blur(18px)}.device-laptop{right:2%;top:9%;width:210px;height:130px;border-radius:20px}.device-mobile{right:4%;bottom:8%;width:74px;height:132px;border-radius:20px}.device-watch{left:9%;bottom:14%;width:68px;height:82px;border-radius:24px}.footer-desktop-layer{left:3%;top:7%;width:250px;height:154px;border-radius:28px;transform:rotateY(15deg) rotateZ(-5deg)}.footer-desktop-layer.layer-b{left:17%;top:22%;width:180px;height:112px;transform:rotateY(10deg) rotateZ(4deg)}.footer-path{position:absolute;height:1px;transform-origin:left;background:linear-gradient(90deg,transparent,#52cdbf,#7768ec,transparent);box-shadow:0 0 13px rgba(77,196,201,.55)}.footer-path.path-one{left:24%;top:31%;width:42%;transform:rotate(18deg)}.footer-path.path-two{left:54%;top:55%;width:36%;transform:rotate(33deg)}.footer-path.path-three{left:20%;top:68%;width:37%;transform:rotate(-28deg)}.footer-experience.footer-awake .footer-core{animation:footer-core-pulse 4s ease-in-out infinite}.footer-experience.footer-awake .footer-device{animation:footer-device-float 6s ease-in-out infinite}.footer-experience.footer-awake .footer-path{animation:footer-path-live 2.8s ease-in-out infinite}
.footer-interest-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.footer-interest-grid article{position:relative;min-height:510px;padding:30px;border:1px solid var(--footer-line);border-radius:30px;background:rgba(255,255,255,.58);box-shadow:0 22px 65px rgba(54,101,164,.08);overflow:hidden;transition:.45s}.footer-interest-grid article:hover,.footer-interest-grid article.active{transform:translateY(-8px);border-color:rgba(59,163,217,.36);background:rgba(255,255,255,.82);box-shadow:0 30px 80px rgba(49,122,188,.13)}.footer-interest-grid article>i{color:#4c93bb;font-size:.75rem;font-style:normal}.footer-interest-grid h3{max-width:10ch;margin:18px 0 12px;font-size:clamp(1.55rem,2vw,2.2rem);line-height:1.03;letter-spacing:-.035em}.footer-interest-grid p{min-height:68px;color:var(--footer-muted);line-height:1.55}.footer-interest-grid nav{position:relative;z-index:2;display:grid;gap:7px}.footer-interest-grid nav a{width:max-content;max-width:100%;color:#315d7f;font-size:.88rem;text-decoration:none}.footer-interest-grid nav a:hover{color:#126ed2;transform:translateX(5px)}.interest-visual{position:absolute;right:-8%;bottom:-10%;width:68%;height:38%;opacity:.38;transition:.55s}.active .interest-visual{opacity:.8;transform:translate(-5%,-8%) scale(1.06)}.interest-visual b,.interest-visual span,.interest-visual em{position:absolute;border:1px solid rgba(65,139,215,.35);background:rgba(255,255,255,.65);box-shadow:0 13px 35px rgba(48,119,181,.11)}.discover-visual b{inset:15% 8%;border-radius:50%;background:repeating-radial-gradient(circle,transparent 0 14px,rgba(75,137,225,.2) 15px 16px)}.discover-visual span{width:13px;height:13px;border-radius:4px}.discover-visual span:nth-child(2){left:18%;top:20%}.discover-visual span:nth-child(3){right:21%;bottom:25%}.use-visual b{left:34%;top:8%;width:70px;height:100px;border-radius:14px}.use-visual span{width:80px;height:54px;border-radius:11px}.use-visual span:nth-child(2){left:2%;top:44%}.use-visual span:nth-child(3){right:0;top:33%}.build-visual>*{top:42%;width:25px;height:25px;border-radius:7px}.build-visual b{left:0}.build-visual span:nth-child(2){left:34%}.build-visual span:nth-child(3){right:8%;width:52px;height:45px}.build-visual em{left:16%;right:15%;top:51%;width:auto;height:1px;background:#6b9fe8}.journey-visual b{left:7%;right:7%;top:58%;height:2px;background:#7aa7e9}.journey-visual span{top:49%;width:18px;height:18px;border-radius:50%}.journey-visual span:nth-child(2){left:12%}.journey-visual span:nth-child(3){left:47%}.journey-visual span:nth-child(4){right:10%}
.footer-sitemap>header{margin-bottom:38px}.footer-accordion{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 18px}.footer-accordion article{align-self:start;border:1px solid var(--footer-line);border-radius:22px;background:rgba(255,255,255,.52);overflow:hidden;transition:.3s}.footer-accordion article.open{background:rgba(255,255,255,.82);box-shadow:0 20px 55px rgba(59,105,170,.09)}.footer-accordion h3{margin:0}.footer-accordion h3 button{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:72px;padding:17px 20px;border:0;background:transparent;color:var(--footer-ink);font:inherit;font-size:1.12rem;text-align:left;cursor:pointer}.footer-accordion h3 span{display:flex;align-items:center;gap:15px}.footer-accordion h3 i{color:#5591b8;font-size:.7rem;font-style:normal}.footer-accordion h3 b{font-size:1.5rem;font-weight:300;transition:.3s}.footer-accordion article.open h3 b{transform:rotate(45deg)}.footer-accordion article>div{border-top:1px solid var(--footer-line)}.footer-accordion nav{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px 18px;padding:24px}.footer-accordion nav a{color:#496782;font-size:.9rem;text-decoration:none}.footer-accordion nav a:hover{color:#1674d0;transform:translateX(4px)}
.footer-widget-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.footer-widget-grid article{position:relative;min-height:460px;padding:34px;border:1px solid var(--footer-line);border-radius:30px;background:rgba(255,255,255,.68);box-shadow:0 24px 70px rgba(55,101,160,.08)}.widget-marker{color:#3386b2;font-size:.69rem;font-weight:750;letter-spacing:.15em}.footer-widget-grid h3{margin:22px 0;font-size:clamp(1.7rem,2.2vw,2.35rem);line-height:1.06;letter-spacing:-.04em}.footer-status-widget dl{display:grid;gap:12px}.footer-status-widget dl div{display:flex;justify-content:space-between;gap:20px;padding-bottom:10px;border-bottom:1px solid var(--footer-line)}.footer-status-widget dt{color:var(--footer-muted)}.footer-status-widget dd{margin:0;color:#244d6d;text-align:right}.footer-widget-grid article>a{display:inline-block;margin-top:25px;color:#176fc8;font-weight:650;text-decoration:none}.status-track{display:flex;gap:8px;margin-top:28px}.status-track i{height:4px;flex:1;border-radius:3px;background:#dce8f1}.status-track .done{background:#4ac4a7}.status-track .active{background:#6d6ee8;box-shadow:0 0 12px rgba(109,110,232,.38)}.footer-widget-grid form label{display:block;margin-bottom:10px;color:var(--footer-muted);font-size:.84rem}.footer-widget-grid form>div{display:flex}.footer-widget-grid input{min-width:0;flex:1;padding:14px;border:1px solid rgba(60,122,190,.2);border-radius:14px 0 0 14px;background:rgba(255,255,255,.85);color:var(--footer-ink)}.footer-widget-grid form button{padding:13px 15px;border:0;border-radius:0 14px 14px 0;background:#176fce;color:#fff;font-weight:650}.footer-compat-widget ul{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:28px 0 0;padding:0;list-style:none;color:#4e6a83;font-size:.85rem}.footer-compat-widget li{display:flex;align-items:center;gap:8px}.footer-compat-widget li i{width:8px;height:8px;border-radius:50%}.available{background:#36bb98}.development{background:#626de3}.planned{background:#e3a950}.research{background:#9e78dc}.footer-update-widget>p{color:var(--footer-muted);line-height:1.55}.update-message{padding:12px;border-radius:12px;background:#edf7ff;color:#33647e!important;font-size:.85rem}
.footer-community-grid{display:grid;grid-template-columns:1fr 1fr 1.15fr;gap:18px}.footer-community-grid article{padding:32px;border:1px solid var(--footer-line);border-radius:28px;background:rgba(255,255,255,.56)}.footer-community-grid h3{margin:0 0 22px;font-size:1.45rem}.footer-community-grid nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px 17px}.footer-community-grid a{color:#426580;text-decoration:none}.footer-community-grid a:hover{color:#1471cf}.official-channel-state{background:linear-gradient(135deg,rgba(239,249,255,.84),rgba(246,239,255,.76))!important}.official-channel-state p{max-width:44ch;color:var(--footer-muted);line-height:1.65}.official-channel-state a{display:inline-block;margin-top:12px;color:#176fc8;font-weight:650}
.footer-brand-bar{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:40px;width:min(1560px,calc(100% - 2*var(--page-padding)));margin:auto;padding:55px 0 38px}.footer-brand-primary .footer-logo{display:block;color:#173652;font-size:1.75rem;font-weight:750;letter-spacing:-.045em;text-decoration:none}.footer-brand-primary .footer-logo span{color:#1e86de}.footer-brand-primary p{margin:8px 0;color:var(--footer-muted)}.footer-brand-bar>strong{color:#2b6387;font-size:clamp(1.05rem,1.5vw,1.35rem);text-align:center}.footer-preferences{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:13px}.footer-preferences a,.footer-preferences button,.footer-preferences span{padding:0;border:0;background:transparent;color:#506e87;font:inherit;font-size:.82rem;text-decoration:none}.footer-preferences button{cursor:pointer}.footer-legal{display:flex;justify-content:space-between;gap:30px;width:min(1560px,calc(100% - 2*var(--page-padding)));margin:auto;padding:23px 0 34px;border-top:1px solid var(--footer-line);color:#668098;font-size:.78rem}.footer-legal nav{display:flex;flex-wrap:wrap;gap:17px}.footer-legal a{color:inherit;text-decoration:none}
@keyframes footer-core-pulse{50%{transform:translateY(-9px);box-shadow:0 34px 95px rgba(48,169,197,.31),inset 0 1px #fff}}@keyframes footer-device-float{50%{transform:translateY(-11px) rotate(.8deg)}}@keyframes footer-path-live{50%{filter:saturate(1.5);opacity:.35}}
@media(max-width:1120px){.footer-interest-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding:8px 3px 26px}.footer-interest-grid article{min-width:min(390px,76vw);scroll-snap-align:start}.footer-widget-grid{grid-template-columns:1fr}.footer-widget-grid article{min-height:0}.footer-community-grid{grid-template-columns:1fr 1fr}.official-channel-state{grid-column:1/-1}.footer-brand-bar{grid-template-columns:1fr;text-align:left}.footer-brand-bar>strong{text-align:left}.footer-preferences{justify-content:flex-start}}
@media(max-width:760px){.footer-canvas-width{width:calc(100% - 40px);padding-block:78px}.footer-living{min-height:820px;padding:68px 20px 120px;align-items:flex-start}.footer-living-copy{width:100%}.footer-living-copy h2{font-size:clamp(3rem,14vw,4.7rem)}.footer-living-copy>div{display:grid}.footer-living-copy a{text-align:center}.footer-living-visual{right:-18%;top:52%;width:125%;height:43%;opacity:.67}.footer-core{left:46%;width:74px;height:90px}.device-laptop{width:145px;height:90px}.footer-desktop-layer{width:170px;height:105px}.footer-interest-grid article{min-width:82vw;min-height:490px}.footer-accordion{grid-template-columns:1fr}.footer-accordion h3 button{min-height:68px}.footer-accordion nav{grid-template-columns:1fr 1fr;padding:20px}.footer-widget-grid article{padding:26px}.footer-widget-grid form>div{display:grid;gap:8px}.footer-widget-grid input,.footer-widget-grid form button{width:100%;box-sizing:border-box;border-radius:13px}.footer-community-grid{grid-template-columns:1fr}.official-channel-state{grid-column:auto}.footer-community-grid nav{grid-template-columns:1fr 1fr}.footer-brand-bar,.footer-legal{width:calc(100% - 40px)}.footer-legal{display:grid}.footer-experience section>header h2{font-size:clamp(2.6rem,12vw,4rem)}}
@media(prefers-reduced-motion:reduce){.footer-experience *{scroll-behavior:auto!important}.footer-experience.footer-awake .footer-core,.footer-experience.footer-awake .footer-device,.footer-experience.footer-awake .footer-path{animation:none}.footer-interest-grid article{transition:none}}
/* Footer typography and colour refinement v40 */
.footer-experience{--footer-ink:#234a68;--footer-heading:#173f60;--footer-muted:#667f96;--footer-soft:#496d89;color:var(--footer-soft)}
.footer-experience section>header{max-width:700px}
.footer-experience section>header h2,.footer-living-copy h2{color:var(--footer-heading);font-size:clamp(2rem,3.15vw,3.45rem);line-height:1.04;letter-spacing:-.042em}
.footer-living-copy{width:min(620px,49vw)}
.footer-living-copy h2{max-width:13ch;font-size:clamp(3rem,4.55vw,5.05rem);line-height:.96;letter-spacing:-.057em}
.footer-living-copy>p{max-width:520px;font-size:clamp(1rem,1.12vw,1.12rem);color:var(--footer-muted)}
.footer-interest-grid h3{max-width:13ch;font-size:clamp(1.4rem,1.62vw,1.78rem);line-height:1.12;color:var(--footer-heading)}
.footer-interest-grid p,.footer-interest-grid nav a{color:var(--footer-muted)}
.footer-accordion h3 button{color:var(--footer-heading);font-size:1.02rem}
.footer-accordion nav a{color:#58758d}
.footer-widget-grid h3{font-size:clamp(1.5rem,1.78vw,1.92rem);line-height:1.13;color:var(--footer-heading)}
.footer-community-grid h3{font-size:1.27rem;color:var(--footer-heading)}
.footer-brand-bar>strong{color:#397093;font-size:clamp(1rem,1.22vw,1.16rem)}
.footer-brand-primary .footer-logo{color:var(--footer-heading)}
@media(max-width:760px){.footer-experience section>header h2{font-size:clamp(2.15rem,9.7vw,3.15rem);line-height:1.02}.footer-living-copy{width:100%}.footer-living-copy h2{max-width:12ch;font-size:clamp(2.85rem,12.3vw,4.05rem);line-height:.98}.footer-interest-grid h3{font-size:1.55rem}.footer-widget-grid h3{font-size:1.68rem}}
/* Site-wide typography, colour and stable navigation v41 */
:root{--text-primary:#28455f;--text-secondary:#60778c;--text-dim:#7a8da0}
html{font-size:15px}
body{color:var(--text-primary);font-weight:400}
:where(main,.footer-experience) :where(h1,h2,h3,h4,strong,b){color:#21445f}
:where(main) p{color:var(--text-secondary)}
.mega-directory-shell,.mega-directory,.mega-link-area>section{animation:none!important;transition:none!important}
.mega-directory-shell{transform:none!important;will-change:auto}
.mega-link-heading h2{font-size:20px!important;line-height:1.15;color:#24516f}
.mega-link-list a{font-size:11.5px;color:#557089}
.mega-feature h3{font-size:18px;color:#214d6d}
.page-title,.section-hero .page-title{font-size:clamp(2.35rem,4.6vw,4.45rem)!important;line-height:1!important;letter-spacing:-.048em!important;color:#214761!important}
.structured-hero h1,.portal-detail-hero h1,.product-hero h1{font-size:clamp(2.65rem,4.7vw,5.1rem)!important;line-height:.98!important;letter-spacing:-.052em!important;color:#1d435f!important}
.section-intro h2,.portal-flow h2,.portal-trust h2,.architecture-explorer h2,.availability-band h2,.gateway-heading h2,.edition-gateway h2{font-size:clamp(2rem,3.25vw,3.45rem)!important;line-height:1.04!important;letter-spacing:-.042em!important}
.home-intro h2,.architecture-copy h2,.evidence-callout h2,.home-final h2,.story-heading h2,.people-copy h2,.main-feature h2,.immersive-final h2{font-size:clamp(2.2rem,3.65vw,3.8rem)!important;line-height:1.03!important;letter-spacing:-.045em!important}
.gateway-card h3{font-size:1.75rem;color:#214963}.gateway-card.dark h3,.gateway-card.dark b,.evidence-callout h2,.evidence-callout b,.portal-trust h2{color:#eef7ff}
.cinematic-v24 .dynamic-hero-copy{width:min(680px,53vw);max-width:680px;padding:20px 18px 24px 0}
.cinematic-v24 .dynamic-hero-copy h1{max-width:12ch!important;font-size:clamp(3.35rem,4.85vw,5.4rem)!important;line-height:.95!important;letter-spacing:-.058em!important;color:#173f5d!important;text-shadow:0 2px 1px rgba(255,255,255,.98),0 8px 34px rgba(255,255,255,.96)}
.cinematic-v24 .dynamic-hero-copy h1 em{display:block;color:#2478b8!important;background:none!important;background-clip:initial!important;-webkit-background-clip:initial!important;text-shadow:0 2px 18px rgba(255,255,255,.95)}
.dynamic-hero-stage:before{background:linear-gradient(90deg,rgba(250,253,255,.99) 0%,rgba(250,253,255,.94) 34%,rgba(250,253,255,.5) 56%,rgba(250,253,255,.06) 79%),linear-gradient(180deg,rgba(255,255,255,.06) 56%,#f8faff 100%)}
.cinematic-v24 .dynamic-hero-copy>p{max-width:540px;font-size:1.02rem;color:#536f86}
@media(max-width:820px){html{font-size:14.5px}.page-title,.section-hero .page-title{font-size:clamp(2.15rem,8.8vw,3.3rem)!important}.structured-hero h1,.portal-detail-hero h1,.product-hero h1{font-size:clamp(2.35rem,9.8vw,3.7rem)!important}.home-intro h2,.architecture-copy h2,.evidence-callout h2,.home-final h2,.story-heading h2,.people-copy h2,.main-feature h2,.immersive-final h2{font-size:clamp(2rem,8.7vw,3rem)!important}.cinematic-v24 .dynamic-hero-copy{width:100%;padding:10px 0 20px}.cinematic-v24 .dynamic-hero-copy h1{max-width:11ch!important;font-size:clamp(2.95rem,12.3vw,4.25rem)!important;line-height:.97!important}.dynamic-hero-stage:before{background:linear-gradient(180deg,rgba(250,253,255,.98) 0%,rgba(250,253,255,.9) 38%,rgba(250,253,255,.28) 66%,#f8faff 98%)}}
/* Fast interactive sections v42 */
.living-intelligence-layer{display:none!important}
main section.section-interactive{position:relative;isolation:isolate;--section-x:50%;--section-y:50%;--section-progress:0;transition:border-color .22s ease,box-shadow .22s ease}
.section-interaction-light{position:absolute!important;z-index:8!important;inset:0!important;width:auto!important;height:auto!important;margin:0!important;border:0!important;border-radius:inherit!important;background:radial-gradient(420px circle at var(--section-x) var(--section-y),rgba(64,189,222,.105),rgba(119,92,232,.045) 38%,transparent 68%)!important;box-shadow:none!important;opacity:0!important;transform:none!important;transition:opacity .2s ease!important;pointer-events:none!important}
main section.section-interactive.section-in-view:hover>.section-interaction-light,main section.section-interactive.section-focused>.section-interaction-light{opacity:1!important}
main section.section-interactive:has(a:hover,button:hover){border-color:rgba(57,145,211,.25)}
main>div>section:not(:first-child),main>section:not(:first-child){content-visibility:auto;contain-intrinsic-size:auto 760px}
.performance-mode :where(.glass-panel,.mega-shell,.utility-panel,.download-panel,.footer-experience article,.feature-scene){backdrop-filter:none!important}
.performance-mode :where(.ambient-glow-wrapper,.living-intelligence-layer,.page-aura){display:none!important}
.performance-mode *{scroll-behavior:auto!important}
@media(max-width:700px){.section-interaction-light{display:none!important}main section.section-interactive{transition:none}main>div>section:not(:first-child),main>section:not(:first-child){contain-intrinsic-size:auto 620px}}
@media(prefers-reduced-motion:reduce){.section-interaction-light{display:none!important}main section.section-interactive{transition:none}}
/* Hero clarity and Support Center v43 */
.dynamic-hero-stage canvas{opacity:1;filter:saturate(1.38) contrast(1.08)}
.dynamic-hero-stage:before{background:linear-gradient(90deg,rgba(248,252,255,.99) 0%,rgba(248,252,255,.96) 30%,rgba(248,252,255,.3) 51%,rgba(248,252,255,0) 73%),linear-gradient(180deg,transparent 68%,#f8faff 100%)}
.dynamic-hero-vignette{opacity:.45}.cinematic-v24 .dynamic-hero-copy{padding:32px;border:1px solid rgba(255,255,255,.7);border-radius:28px;background:rgba(250,253,255,.72);box-shadow:0 22px 70px rgba(65,112,170,.1);backdrop-filter:blur(10px)}
.dynamic-hero-controls{grid-template-columns:auto auto auto auto}.dynamic-hero-controls button{white-space:nowrap}
.support-center{width:min(1480px,100%);margin:auto;color:#31536d}.support-center>section{margin-block:clamp(70px,9vw,135px)}.support-home{display:grid;grid-template-columns:1fr 1fr;gap:clamp(45px,7vw,110px);align-items:center;min-height:720px}.support-copy>span,.support-quick header span,.support-flow>div>span,.support-engine header span,.support-safety>div>span,.support-foundations span,.support-reality>span{color:#247aa9;font-size:.7rem;font-weight:750;letter-spacing:.16em}.support-copy h1{max-width:11ch;margin:22px 0;font-size:clamp(3.2rem,5.4vw,5.8rem);line-height:.94;letter-spacing:-.06em;color:#17425f}.support-copy>p{max-width:620px;color:#5d778c;font-size:1.08rem;line-height:1.65}.support-copy ul{display:flex;flex-wrap:wrap;gap:9px;margin:28px 0 0;padding:0;list-style:none}.support-copy li{padding:9px 13px;border:1px solid rgba(48,139,197,.17);border-radius:999px;background:#f4fbff;color:#39708e;font-size:.8rem}.support-console{padding:34px;border:1px solid rgba(54,139,204,.2);border-radius:30px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(234,248,255,.83));box-shadow:0 32px 85px rgba(56,111,169,.12)}.support-console>label{display:block;color:#1f5272;font-size:1.7rem;font-weight:700}.support-console>p{color:#6b8295}.support-console textarea{box-sizing:border-box;width:100%;padding:18px;border:1px solid #cfe2ef;border-radius:18px;background:#fff;color:#284b65;font:inherit;font-size:1rem;resize:vertical}.support-console form button,.support-actions button,.support-actions a{display:inline-flex;margin-top:12px;padding:12px 17px;border:0;border-radius:999px;background:#1877d1;color:#fff;font:inherit;font-size:.86rem;font-weight:700;text-decoration:none}.support-suggestions{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.support-suggestions button{padding:8px 11px;border:1px solid #d5e5ef;border-radius:999px;background:#fff;color:#52718a}.support-console small{display:block;margin-top:19px;color:#7a8e9f}.support-dialog{max-width:900px;margin-inline:auto!important;padding:34px;border:1px solid rgba(56,144,204,.18);border-radius:30px;background:rgba(255,255,255,.82);box-shadow:0 28px 80px rgba(54,109,169,.1)}.support-dialog>header{display:flex;justify-content:space-between;margin-bottom:24px}.support-dialog>header span{color:#4b7896;font-size:.72rem;letter-spacing:.12em}.support-dialog>header b{padding:6px 9px;border-radius:999px;background:#eaf8f4;color:#2d8b75;font-size:.72rem}.support-message{max-width:78%;margin:12px 0;padding:16px 19px;border-radius:18px;background:#eef6fc}.support-message.user{margin-left:auto;background:#f1eeff}.support-message small{color:#4d7996;font-size:.62rem;letter-spacing:.1em}.support-message p{margin:7px 0;line-height:1.6}.support-source{display:flex;gap:9px;color:#648096;font-size:.78rem}.support-source i{width:8px;height:8px;margin-top:4px;border-radius:50%;background:#39ba98}.support-actions{display:flex;flex-wrap:wrap;gap:8px}.support-actions .quiet{background:#edf5fa;color:#416780}.support-details,.diagnostic-progress{margin-top:18px;padding:16px;border-radius:16px;background:#f4f9fc}.diagnostic-progress>span{display:block;height:5px;border-radius:4px;background:linear-gradient(90deg,#2b98dc,#47c7a8);transition:width .12s}.support-quick header,.support-engine header{max-width:750px}.support-quick h2,.support-flow h2,.support-engine h2,.support-safety h2,.support-foundations h2,.support-reality h2{margin:16px 0;font-size:clamp(2.2rem,3.5vw,3.7rem);line-height:1.02;letter-spacing:-.045em;color:#1d4763}.support-quick>div{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.support-quick a{min-height:220px;padding:25px;border:1px solid rgba(54,135,198,.16);border-radius:24px;background:rgba(255,255,255,.7);color:#315873;text-decoration:none;transition:.25s}.support-quick a:hover{transform:translateY(-5px);border-color:#73b9df}.support-quick i{color:#3388b4;font-style:normal;font-size:.7rem}.support-quick h3{font-size:1.3rem}.support-quick p{color:#668096;line-height:1.55}.support-quick a span{color:#1471c7;font-size:.83rem}.support-flow{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:center}.support-flow p,.support-safety p,.support-foundations p,.support-reality p{color:#647e93;line-height:1.65}.support-flow ol{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:0;padding:0;list-style:none}.support-flow li{display:flex;align-items:center;gap:13px;padding:17px;border:1px solid #dbe8f1;border-radius:16px;background:#fff;opacity:.52;transition:.25s}.support-flow li.active{opacity:1;border-color:#70bdd2;background:#effbfa;transform:translateX(4px)}.support-flow li i{display:grid;place-items:center;width:26px;height:26px;border-radius:8px;background:#e9f4fb;color:#3680a8;font-style:normal;font-size:.7rem}.support-engine>div{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.support-engine article{min-height:280px;padding:28px;border:1px solid #dbe8f2;border-radius:25px;background:rgba(255,255,255,.74)}.support-engine article>i{color:#3b8bad;font-style:normal}.support-engine h3{font-size:1.45rem}.support-engine p{color:#647d92;line-height:1.6}.support-engine article>b{display:block;margin-top:30px;color:#2d8d83;font-size:.8rem}.support-safety{display:grid;grid-template-columns:1.2fr .8fr;gap:25px}.support-safety>div,.support-safety aside,.support-foundations article{padding:38px;border:1px solid #dbe9f2;border-radius:28px;background:rgba(255,255,255,.72)}.support-safety ol{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding-left:20px}.support-safety aside{background:linear-gradient(145deg,#f0f8ff,#f5f2ff)}.support-safety aside small{color:#6b74aa;letter-spacing:.1em}.support-safety aside li{margin:10px 0;color:#59738a}.support-safety aside a,.support-foundations a{color:#1570c8;text-decoration:none;font-weight:650}.support-foundations{display:grid;grid-template-columns:1fr 1fr;gap:18px}.support-foundations h2{font-size:clamp(1.9rem,2.7vw,2.7rem)}.support-reality{padding:55px;border:1px solid #d4e6f1;border-radius:30px;background:linear-gradient(120deg,#edf9ff,#fff 48%,#f1fdf8);text-align:center}.support-reality p{max-width:780px;margin:20px auto}.support-reality>div{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}.support-reality a{padding:11px 15px;border:1px solid #d2e3ee;border-radius:999px;background:#fff;color:#28698f;text-decoration:none}
@media(max-width:900px){.support-home,.support-flow,.support-safety{grid-template-columns:1fr}.support-quick>div,.support-engine>div{grid-template-columns:1fr 1fr}.cinematic-v24 .dynamic-hero-copy{backdrop-filter:none}.dynamic-hero-controls{grid-template-columns:auto minmax(0,1fr) auto}.dynamic-hero-controls [data-motion-toggle]{display:none}}
@media(max-width:620px){.support-center>section{margin-block:65px}.support-home{min-height:0}.support-copy h1{font-size:clamp(2.9rem,13vw,4rem)}.support-console,.support-dialog{padding:22px}.support-message{max-width:88%}.support-quick>div,.support-engine>div,.support-foundations{grid-template-columns:1fr}.support-flow ol{grid-template-columns:1fr}.support-safety ol{grid-template-columns:1fr}.dynamic-hero-controls{left:14px;right:14px;gap:8px}.dynamic-hero-controls strong{font-size:.7rem}.cinematic-v24 .dynamic-hero-copy{padding:22px}}
/* Ultra-modern spatial Hero and centered Mega Menu v44 */
@media(min-width:1101px){.mega-shell.mega-directory-shell{position:fixed!important;top:68px!important;left:50vw!important;right:auto!important;width:min(1480px,calc(100vw - 48px))!important;max-height:calc(100dvh - 88px)!important;margin:0!important;transform:translateX(-50%)!important;overflow:auto!important;overscroll-behavior:contain;z-index:999!important}.header,.header-inner,.nav-links,.nav-mega{overflow:visible!important}}
.cinematic-v24 .dynamic-hero{min-height:calc(100svh - 68px);background:#f4f9fd}
.dynamic-hero-stage{background:linear-gradient(125deg,#f9fcff 0%,#eaf6ff 46%,#f0ecff 73%,#e8fff8 100%)}
.dynamic-hero-stage canvas{left:34%!important;width:76%!important;max-width:none!important;filter:saturate(1.65) contrast(1.13);transform:scale(1.16);transform-origin:68% 48%}
.dynamic-ready .dynamic-hero-stage canvas{transform:scale(1.12)}
.hero-spatial-grid{position:absolute;z-index:1;inset:0;background-image:linear-gradient(rgba(50,117,179,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(50,117,179,.055) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(90deg,transparent 0 38%,#000 58%,transparent 100%);transform:perspective(900px) rotateX(64deg) translateY(39%);transform-origin:center bottom}
.hero-scanline{position:absolute;z-index:2;left:42%;right:5%;top:20%;height:1px;background:linear-gradient(90deg,transparent,#43c9c2,#7267e9,transparent);box-shadow:0 0 18px rgba(68,194,207,.55);animation:hero-scan 7s ease-in-out infinite}
.hero-axis{position:absolute;z-index:2;background:linear-gradient(90deg,transparent,rgba(58,140,200,.25),transparent)}.axis-x{left:38%;right:3%;bottom:18%;height:1px}.axis-y{right:9%;top:16%;bottom:12%;width:1px;background:linear-gradient(transparent,rgba(99,91,220,.25),transparent)}
.cinematic-v24 .dynamic-hero-copy{width:min(650px,48vw);max-width:650px;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;backdrop-filter:none!important}
.hero-system-strip{display:flex;align-items:center;gap:12px;width:min(520px,100%);margin-bottom:28px;color:#39708f;font-size:.65rem;font-weight:750;letter-spacing:.13em}.hero-system-strip i{height:1px;flex:1;background:linear-gradient(90deg,#43bfc5,transparent)}.hero-system-strip b{color:#695cc8;font-size:inherit}
.cinematic-v24 .dynamic-hero-copy h1{max-width:10.5ch!important;font-size:clamp(3.75rem,5.25vw,6rem)!important;line-height:.89!important;letter-spacing:-.07em!important;color:#123d5b!important;text-wrap:balance;text-shadow:none!important}
.cinematic-v24 .dynamic-hero-copy h1 em{color:#168aa8!important;text-shadow:none!important}
.cinematic-v24 .dynamic-hero-copy>p{max-width:520px;color:#496b84;font-size:1rem;line-height:1.62}
.dynamic-hero-stage:before{z-index:3;background:linear-gradient(90deg,#f7fbfe 0%,rgba(247,251,254,.96) 28%,rgba(247,251,254,.28) 48%,transparent 68%),linear-gradient(180deg,transparent 72%,#f8faff 100%)}
.dynamic-hero-vignette{display:none}.dynamic-hero-controls{right:clamp(24px,4vw,72px);bottom:28px;background:rgba(248,252,255,.72);border-color:rgba(55,143,199,.2);box-shadow:0 15px 45px rgba(37,104,155,.1)}
@keyframes hero-scan{0%,100%{translate:0 -40px;opacity:.2}50%{translate:0 260px;opacity:.85}}
.section-interactive.section-engaged>.section-interaction-light{opacity:1!important;background:radial-gradient(520px circle at var(--section-x) var(--section-y),rgba(52,195,211,.15),rgba(110,89,232,.065) 42%,transparent 70%)!important}.section-interactive.section-engaged{outline:1px solid rgba(51,153,207,.12);outline-offset:5px}
@media(max-width:900px){.dynamic-hero-stage canvas{left:0!important;top:32%!important;width:100%!important;height:68%!important;transform:scale(1.28)}.dynamic-ready .dynamic-hero-stage canvas{transform:scale(1.22)}.dynamic-hero-stage:before{background:linear-gradient(180deg,#f7fbfe 0%,rgba(247,251,254,.94) 37%,rgba(247,251,254,.16) 59%,#f8faff 100%)}.hero-spatial-grid{mask-image:linear-gradient(transparent 22%,#000 58%,transparent)}.hero-system-strip{font-size:.58rem}.cinematic-v24 .dynamic-hero-copy h1{font-size:clamp(3.1rem,12.5vw,4.5rem)!important}.hero-scanline{left:5%;right:5%;top:58%}}
@media(prefers-reduced-motion:reduce){.hero-scanline{animation:none}}
/* Support completion and crawlable information architecture v45 */
.support-confidence>header,.support-roadmap>header{max-width:760px}.support-confidence h2,.support-governance h2,.support-roadmap h2,.support-metrics h2{margin:15px 0;font-size:clamp(2.15rem,3.35vw,3.55rem);line-height:1.03;letter-spacing:-.045em;color:#1d4763}.support-confidence>div{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}.support-confidence article{padding:23px;border:1px solid #d9e7f0;border-radius:21px;background:rgba(255,255,255,.72)}.support-confidence b,.support-confidence em{display:block}.support-confidence b{color:#23739b;font-size:1.15rem}.support-confidence p{min-height:75px;color:#647f93;line-height:1.5}.support-confidence em{color:#2d917e;font-size:.76rem;font-style:normal}.support-governance{display:grid;grid-template-columns:.85fr 1.15fr;gap:65px;align-items:start}.support-governance>div>span,.support-modes article>span,.support-roadmap header>span,.support-metrics>div>span{color:#247aa9;font-size:.7rem;font-weight:750;letter-spacing:.15em}.governance-rules{display:grid;gap:10px}.governance-rules details{padding:20px;border:1px solid #d9e8f1;border-radius:18px;background:#fff}.governance-rules summary{color:#285775;font-weight:700;cursor:pointer}.governance-rules p{margin-top:12px;color:#657f93;line-height:1.6}.support-modes{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.support-modes article{padding:30px;border:1px solid #d8e8f1;border-radius:25px;background:linear-gradient(145deg,#f8fcff,#f4f2ff)}.support-modes h3{margin:45px 0 12px;font-size:1.45rem}.support-modes p{color:#627d92;line-height:1.6}.support-roadmap ol{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;padding:0;list-style:none}.support-roadmap li{display:grid;grid-template-columns:42px 1fr;gap:15px;padding:24px;border:1px solid #d8e7f0;border-radius:22px;background:rgba(255,255,255,.74)}.support-roadmap li>b{color:#3884aa}.support-roadmap strong,.support-roadmap span{display:block}.support-roadmap strong{font-size:1.18rem}.support-roadmap span{margin-top:7px;color:#2d8d7b;font-size:.68rem;font-weight:750;letter-spacing:.1em}.support-roadmap p{margin-top:12px;color:#678196;line-height:1.55}.support-metrics{display:grid;grid-template-columns:.75fr 1.25fr;gap:60px;align-items:center}.support-metrics ul{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;padding:0;list-style:none}.support-metrics li{padding:20px;border:1px solid #d8e8f1;border-radius:19px;background:#fff}.support-metrics b,.support-metrics span{display:block}.support-metrics b{color:#247da9;font-size:1.45rem}.support-metrics span{margin-top:10px;color:#688095;font-size:.76rem;line-height:1.45}@media(max-width:1000px){.support-confidence>div{grid-template-columns:repeat(2,1fr)}.support-governance,.support-metrics{grid-template-columns:1fr}.support-metrics ul{grid-template-columns:repeat(3,1fr)}}@media(max-width:650px){.support-confidence>div,.support-modes,.support-roadmap ol,.support-metrics ul{grid-template-columns:1fr}.support-confidence p{min-height:0}}
/* Grounded support answer experience v46 */
.support-dialog{position:relative;overflow:hidden;max-width:1040px!important;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(238,248,255,.9))!important;box-shadow:0 35px 110px rgba(29,94,146,.14)!important}.support-dialog:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,#25bfc0,#287ed8,#7969e7,#41c69b)}.support-dialog>header b.checking{background:#edf5ff;color:#3e78ac}.support-dialog>header b.unavailable,.support-dialog>header b.unknown{background:#fff3e8;color:#a56635}.support-message.assistant{max-width:88%;padding:24px;background:rgba(255,255,255,.86);border:1px solid rgba(61,137,191,.13);box-shadow:0 15px 45px rgba(43,101,150,.07)}.support-message.assistant h3{margin:10px 0 7px;color:#173f5b;font-size:clamp(1.25rem,2vw,1.75rem);line-height:1.15;letter-spacing:-.025em}.support-clarification{padding:12px 14px;border-left:3px solid #8071df;border-radius:0 12px 12px 0;background:#f5f2ff;color:#594f87}.support-answer-steps{display:grid;gap:9px;margin:20px 0;padding:0;list-style:none}.support-answer-steps li{display:grid;grid-template-columns:30px 1fr;align-items:start;gap:11px;padding:12px 14px;border:1px solid #dce9f1;border-radius:14px;background:#f9fcfe;color:#42647c;line-height:1.5}.support-answer-steps i{display:grid;place-items:center;width:26px;height:26px;border-radius:8px;background:linear-gradient(145deg,#e4f7fb,#ece9ff);color:#277c9d;font-style:normal;font-size:.7rem;font-weight:750}.support-verification{margin:16px 0;padding:15px 17px;border-radius:15px;background:#ecfaf5;color:#3d7469}.support-verification b,.support-sources>b{display:block;margin-bottom:5px;color:#257866;font-size:.76rem;text-transform:uppercase;letter-spacing:.08em}.support-verification p{margin:0}.support-sources{margin:17px 0}.support-sources>a{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:7px;padding:11px 13px;border:1px solid #d8e7f0;border-radius:12px;background:#fff;color:#236c99;text-decoration:none;transition:.2s}.support-sources>a:hover{border-color:#62b6d6;transform:translateX(3px)}.support-sources>a small{margin:0;color:#71879a}.support-actions{align-items:center;margin-top:18px}.support-actions button,.support-actions a{cursor:pointer}.support-details{border:1px solid #dce9f1;color:#58758a}.support-details p{margin-bottom:0;line-height:1.55}@media(max-width:620px){.support-message.assistant{max-width:100%;padding:18px}.support-sources>a{align-items:flex-start;flex-direction:column}.support-actions>*{justify-content:center;flex:1 1 auto}}
/* Support operations workspace v47 */
.support-operations{position:relative;padding:clamp(24px,4vw,52px);border:1px solid rgba(53,139,196,.18);border-radius:34px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(235,248,255,.84));box-shadow:0 34px 100px rgba(38,101,153,.11)}.support-operations>header{display:grid;grid-template-columns:1fr auto;align-items:end;gap:20px}.support-operations>header>span{grid-column:1/-1;color:#247aa9;font-size:.7rem;font-weight:750;letter-spacing:.15em}.support-operations h2{max-width:760px;margin:10px 0;font-size:clamp(2.25rem,3.6vw,3.7rem);line-height:1;letter-spacing:-.05em;color:#194561}.support-language{display:flex;flex-wrap:wrap;gap:7px}.support-language button,.support-operations>nav button{padding:9px 13px;border:1px solid #d5e6f0;border-radius:999px;background:#fff;color:#52728a;cursor:pointer}.support-language button.active,.support-operations>nav button.active{border-color:#58b7ce;background:#eafaf8;color:#217b75}.support-operations>nav{display:flex;gap:8px;margin:34px 0 18px;padding-bottom:14px;overflow:auto}.support-tool-panel{min-height:310px;padding:26px;border:1px solid #d9e8f1;border-radius:24px;background:rgba(255,255,255,.8)}.support-tool-panel>div:first-child small{color:#2d83aa;font-size:.65rem;font-weight:750;letter-spacing:.14em}.support-tool-panel h3{margin:8px 0;font-size:1.75rem;color:#204d69}.support-tool-panel p{color:#657f92;line-height:1.55}.support-tool-panel form{display:grid;gap:10px;margin-top:20px}.support-tool-panel input,.support-tool-panel textarea{box-sizing:border-box;width:100%;padding:13px 15px;border:1px solid #d2e3ed;border-radius:13px;background:#fff;color:#31536c;font:inherit}.support-tool-panel textarea{min-height:100px;resize:vertical}.support-tool-panel form>button{justify-self:start;padding:11px 17px;border:0;border-radius:999px;background:#1877d1;color:#fff;font:inherit;font-weight:700;cursor:pointer}.support-tool-panel label{display:flex;align-items:center;gap:9px;color:#58758b;font-size:.84rem}.support-tool-panel label input{width:auto}.support-result-list{display:grid;grid-template-columns:repeat(2,1fr);gap:9px;margin-top:18px}.support-result-list a{display:flex;justify-content:space-between;gap:12px;padding:14px;border:1px solid #dbe8f0;border-radius:14px;background:#fff;color:#286789;text-decoration:none}.support-result-list small{color:#788b9a}.known-issue-grid{display:grid!important;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:20px}.known-issue-grid a{padding:20px;border:1px solid #d9e7f0;border-radius:18px;background:#fff;color:#315a73;text-decoration:none}.known-issue-grid i,.known-issue-grid b,.known-issue-grid span{display:block}.known-issue-grid i{color:#3984a8;font-style:normal;font-size:.67rem}.known-issue-grid b{margin:12px 0}.known-issue-grid span{color:#2d8c79;font-size:.7rem;font-weight:750;text-transform:uppercase}.report-form{grid-template-columns:1fr 1fr}.report-form textarea,.report-form label,.report-form button{grid-column:1/-1}.support-tool-panel pre{overflow:auto;margin-top:18px;padding:18px;border-radius:15px;background:#eef7fb;color:#345b72;white-space:pre-wrap}.case-columns{display:grid!important;grid-template-columns:1fr 1fr;gap:20px}.case-result{display:grid;gap:6px;padding:14px;border-radius:14px;background:#eaf9f4}.case-result code{word-break:break-all}.status-grid{display:grid!important;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:20px}.status-grid article{display:flex;gap:12px;padding:16px;border:1px solid #dbe8f0;border-radius:15px;background:#fff}.status-grid article>i{width:10px;height:10px;margin-top:5px;border-radius:50%;background:#9baebb}.status-grid article>i.operational{background:#35b795;box-shadow:0 0 0 5px rgba(53,183,149,.12)}.status-grid article>i.unavailable{background:#e1a34f}.status-grid b,.status-grid span,.status-grid small{display:block}.status-grid span{margin-top:3px;color:#318b78;font-size:.7rem;text-transform:uppercase}.status-grid small{margin-top:5px;color:#7b8d9b}.support-operation-error{padding:12px 15px;border-radius:12px;background:#fff2eb;color:#98583e}.support-empty{padding:15px;border-radius:12px;background:#f2f7fa}@media(max-width:800px){.support-operations>header,.case-columns{grid-template-columns:1fr}.known-issue-grid{grid-template-columns:1fr 1fr}.support-result-list{grid-template-columns:1fr}}@media(max-width:560px){.support-tool-panel{padding:18px}.known-issue-grid,.status-grid,.report-form{grid-template-columns:1fr}.report-form>*{grid-column:1}.support-operations>nav{margin-inline:-8px}.support-operations>nav button{white-space:nowrap}}
/* The Living OS Universe — complete Hero replacement v48 */
.living-os-universe{--hero-x:68%;--hero-y:46%;position:relative;isolation:isolate;width:100vw;min-height:calc(100svh - 68px);margin-left:calc(50% - 50vw);overflow:hidden;background:#f8fbff;color:#10213d}.living-os-universe .dynamic-hero-stage{position:absolute;z-index:0;inset:0;background:radial-gradient(circle at 73% 43%,rgba(40,216,245,.22),transparent 27%),radial-gradient(circle at 80% 20%,rgba(138,108,255,.2),transparent 29%),radial-gradient(circle at 58% 78%,rgba(115,231,193,.2),transparent 31%),linear-gradient(135deg,#f8fbff 8%,#edf7ff 48%,#f7f2ff 78%,#edfffa)}.living-os-universe .dynamic-hero-stage:before{content:none!important}.living-os-universe .dynamic-hero-stage canvas{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;max-width:none!important;opacity:0;filter:saturate(1.7) contrast(1.1);transform:scale(1.08)!important;transition:opacity 1.7s,transform 5s!important}.sequence-forming .dynamic-hero-stage canvas{opacity:.92;transform:scale(1)!important}.universe-awakening{position:absolute;z-index:8;inset:0;pointer-events:none;background:#f8fbff;transition:opacity 1.3s}.sequence-awake .universe-awakening{opacity:0}.universe-awakening:after{content:"";position:absolute;left:68%;top:46%;width:4px;height:4px;border-radius:50%;background:#2675ff;box-shadow:0 0 60px 25px #28d8f5,0 0 140px 70px rgba(138,108,255,.5);animation:universe-ignite 1.3s ease-out forwards}.universe-depth{position:absolute;z-index:1;inset:0;perspective:1000px;pointer-events:none;opacity:0;transition:opacity 1.5s}.sequence-forming .universe-depth{opacity:1}.universe-depth span{position:absolute;border:1px solid rgba(38,117,255,.14);border-radius:50%;transform:rotateX(68deg)}.universe-depth span:nth-child(1){left:36%;top:5%;width:70vw;height:70vw}.universe-depth span:nth-child(2){left:47%;top:18%;width:48vw;height:48vw;border-color:rgba(40,216,245,.22)}.universe-depth span:nth-child(3){left:58%;top:29%;width:27vw;height:27vw;border-color:rgba(138,108,255,.22)}.universe-workspace{position:absolute;z-index:2;inset:8% 2% 10% 37%;perspective:1200px;pointer-events:none;opacity:0;transform:translate3d(5%,3%,0) scale(.94);transition:opacity 1.4s,transform 2.8s}.sequence-live .universe-workspace{opacity:1;transform:none}.workspace-plane{position:absolute;border:1px solid rgba(255,255,255,.76);border-radius:26px;background:linear-gradient(135deg,rgba(38,117,255,.15),rgba(40,216,245,.06) 43%,rgba(138,108,255,.15));box-shadow:inset 0 0 0 1px rgba(38,117,255,.08),0 25px 80px rgba(38,117,255,.1);backdrop-filter:blur(7px);transition:1s}.plane-primary{left:13%;top:18%;width:54%;height:48%;transform:rotateY(-12deg) rotateX(4deg)}.plane-context{right:2%;top:8%;width:31%;height:31%;transform:translateZ(80px) rotateY(-8deg)}.plane-memory{right:9%;bottom:1%;width:39%;height:24%;transform:translateZ(130px) rotateY(-5deg)}.workspace-plane i,.workspace-plane b{position:absolute;display:block;border-radius:999px;background:linear-gradient(90deg,#2675ff,#28d8f5)}.plane-primary i:nth-child(1){left:8%;top:12%;width:32%;height:3px}.plane-primary i:nth-child(2){left:8%;top:24%;width:68%;height:1px}.plane-primary i:nth-child(3){left:8%;bottom:12%;width:76%;height:36%;border-radius:18px;background:linear-gradient(135deg,rgba(40,216,245,.22),rgba(138,108,255,.14))}.plane-primary b{right:8%;top:10%;width:10px;height:10px;background:#73e7c1;box-shadow:0 0 20px #73e7c1}.plane-context i:first-child{left:12%;top:18%;width:52%;height:3px}.plane-context i:nth-child(2){left:12%;top:34%;width:70%;height:34%;border-radius:14px;background:linear-gradient(120deg,rgba(255,183,159,.32),rgba(138,108,255,.2))}.plane-memory i{width:9px;height:9px;background:#8a6cff;box-shadow:0 0 18px #8a6cff}.plane-memory i:nth-child(1){left:15%;top:50%}.plane-memory i:nth-child(2){left:48%;top:27%}.plane-memory i:nth-child(3){right:14%;top:58%}.universe-dock{position:absolute;left:24%;bottom:5%;display:flex;gap:15px;padding:12px 18px;border:1px solid #fff;border-radius:999px;background:rgba(233,248,255,.5);backdrop-filter:blur(10px)}.universe-dock i{width:15px;height:15px;border-radius:5px;background:linear-gradient(145deg,#2675ff,#28d8f5)}.universe-dock i:nth-child(2){background:linear-gradient(145deg,#8a6cff,#ffb79f)}.universe-dock i:nth-child(3){background:linear-gradient(145deg,#73e7c1,#28d8f5)}.security-boundary{position:absolute;inset:2% 0 0 7%;border:1px solid rgba(115,231,193,.3);border-radius:50%;transform:rotateX(67deg)}.intelligence-trail{position:absolute;left:0;right:0;top:50%;height:2px;background:linear-gradient(90deg,transparent,#28d8f5,#8a6cff,transparent);filter:drop-shadow(0 0 9px #28d8f5);animation:trail-flow 4s ease-in-out infinite}.universe-cursor-light{position:absolute;z-index:3;left:var(--hero-x);top:var(--hero-y);width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(40,216,245,.24),rgba(138,108,255,.09) 36%,transparent 70%);transform:translate(-50%,-50%);pointer-events:none}.universe-copy{position:relative;z-index:5;width:min(680px,48vw);padding:clamp(72px,10vh,120px) 0 165px clamp(25px,6vw,96px);opacity:0;transform:translateY(18px);transition:opacity 1.2s,transform 1.5s}.sequence-copy .universe-copy{opacity:1;transform:none}.universe-label{display:flex;align-items:center;gap:10px;color:#2675ff;font-size:.69rem;font-weight:800;letter-spacing:.18em}.universe-label:before{content:"";width:28px;height:1px;background:#28d8f5}.universe-copy h1{max-width:11ch;margin:27px 0 22px;font-size:clamp(4rem,6.2vw,7.2rem);font-weight:620;line-height:.84;letter-spacing:-.075em;color:#10213d}.universe-copy h1 em{font-style:normal;background:linear-gradient(90deg,#2675ff,#7269ef,#17aebf);background-clip:text;-webkit-background-clip:text;color:transparent}.universe-copy>p{max-width:530px;color:#45657d;font-size:1.06rem;line-height:1.65}.universe-hook{display:flex;align-items:center;gap:10px;min-height:24px;margin-top:18px;color:#476a82;font-size:.82rem;font-weight:650}.universe-hook i{width:6px;height:6px;border-radius:50%;background:#73e7c1;box-shadow:0 0 13px #4dd7be}.universe-hook span{transition:.25s}.universe-hook span.changing{opacity:0;transform:translateY(5px)}.universe-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:29px}.universe-actions a{padding:14px 19px;border:1px solid rgba(38,117,255,.2);border-radius:999px;background:#2675ff;color:#fff;font-size:.85rem;font-weight:750;text-decoration:none;box-shadow:0 14px 32px rgba(38,117,255,.2);transition:.25s}.universe-actions a:last-child{background:rgba(255,255,255,.7);color:#285774;box-shadow:none}.universe-actions a:hover{transform:translateY(-3px)}.universe-evidence{display:flex;align-items:center;gap:8px;margin-top:22px;color:#668095}.universe-evidence i{width:13px;height:13px;border:1px solid #41b89d;border-radius:50%;background:#73e7c1}.intention-console{position:absolute;z-index:6;left:50%;bottom:36px;width:min(670px,52vw);padding:13px 16px;border:1px solid #fff;border-radius:20px;background:rgba(244,251,255,.72);box-shadow:0 16px 50px rgba(35,101,153,.1);backdrop-filter:blur(13px);transform:translateX(-35%);opacity:0;transition:opacity 1s ease 5s}.sequence-live .intention-console{opacity:1}.intention-console>span{display:block;margin-bottom:8px;color:#5c7990;font-size:.56rem;font-weight:800;letter-spacing:.16em}.intention-console>div{display:flex;gap:5px}.intention-console button{display:flex;align-items:center;gap:7px;padding:8px 11px;border:0;border-radius:999px;background:transparent;color:#527086;font:inherit;font-size:.72rem;cursor:pointer}.intention-console button i{width:5px;height:5px;border-radius:50%;background:#a5b7c4}.intention-console button.active{background:#fff;color:#226f9a}.intention-console button.active i{background:#28d8f5;box-shadow:0 0 10px #28d8f5}.intention-console p{margin:9px 3px 0;color:#658096;font-size:.69rem}.universe-status{position:absolute;z-index:6;right:25px;top:27px;display:flex;align-items:center;gap:10px;color:#52758c;font-size:.63rem}.universe-status button{padding:7px 10px;border:1px solid #d5e7f1;border-radius:999px;background:#fff;color:#52748a;font:inherit}.universe-scroll{position:absolute;z-index:6;right:28px;bottom:35px;display:flex;align-items:center;gap:10px;color:#52768c;font-size:.58rem;font-weight:750;letter-spacing:.13em;text-decoration:none}.universe-scroll i{width:26px;height:26px;border:1px solid #b9d7e6;border-radius:50%}.living-os-universe[data-intent=focus] .plane-context,.living-os-universe[data-intent=focus] .plane-memory{opacity:.14;transform:scale(.8)}.living-os-universe[data-intent=focus] .plane-primary{left:25%;top:14%;width:58%;height:58%}.living-os-universe[data-intent=learn] .plane-memory{right:17%;bottom:18%;width:55%;height:38%}.living-os-universe[data-intent=learn] .plane-primary{transform:translate(-10%,-8%) scale(.78)}.living-os-universe[data-intent=build] .plane-primary{left:5%;top:10%;width:32%;height:62%}.living-os-universe[data-intent=build] .plane-context{right:25%;top:23%;width:28%;height:42%}.living-os-universe[data-intent=build] .plane-memory{right:0;bottom:18%;width:24%;height:35%}.living-os-universe[data-intent=continue] .plane-primary{transform:translateZ(150px)}.living-os-universe[data-intent=continue] .plane-memory{right:30%;bottom:4%;width:48%;height:28%}@keyframes universe-ignite{0%{transform:scale(.1);opacity:0}35%{opacity:1}100%{transform:scale(16);opacity:0}}@keyframes trail-flow{0%,100%{transform:translateX(-8%);opacity:.3}50%{transform:translateX(8%);opacity:1}}@media(max-width:900px){.living-os-universe{min-height:900px}.living-os-universe .dynamic-hero-stage canvas{inset:29% -22% 0!important;width:135%!important;height:70%!important}.universe-copy{width:auto;padding:75px 25px 430px}.universe-copy h1{font-size:clamp(3.5rem,13vw,5.8rem)}.universe-workspace{inset:42% -15% 14% 0}.intention-console{left:20px;right:20px;bottom:72px;width:auto;transform:none}.universe-scroll{display:none}.universe-status{top:auto;right:22px;bottom:24px}.universe-status b,.universe-status span{display:none}}@media(max-width:580px){.living-os-universe{min-height:880px}.universe-label{font-size:.56rem}.universe-copy{padding-top:62px}.universe-copy h1{font-size:clamp(3.25rem,15vw,4.8rem)}.universe-copy>p{font-size:.92rem}.universe-actions{display:grid;width:max-content}.universe-workspace{inset:49% -42% 13% -10%;transform:scale(.82)}.intention-console>div{overflow:auto}.intention-console button{white-space:nowrap}}@media(prefers-reduced-motion:reduce){.universe-awakening{display:none}.living-os-universe .dynamic-hero-stage canvas,.universe-depth,.universe-workspace,.universe-copy,.intention-console{opacity:1!important;transform:none!important;transition:none!important}.intelligence-trail{animation:none}.universe-cursor-light{display:none}}
/* Phase-1 Hero Prototype Gate v49 */
.hero-lab{--px:68%;--py:45%;width:100vw;margin-left:calc(50% - 50vw);background:#f8fbff}.prototype-stage{position:relative;isolation:isolate;min-height:calc(100svh - 68px);overflow:hidden;background:radial-gradient(circle at var(--px) var(--py),rgba(40,216,245,.22),transparent 22%),radial-gradient(circle at 82% 20%,rgba(138,108,255,.19),transparent 28%),radial-gradient(circle at 62% 85%,rgba(115,231,193,.2),transparent 30%),#f8fbff;color:#10213d}.prototype-canvas{position:absolute;z-index:1;inset:0;width:100%;height:100%}.prototype-switcher{position:fixed;z-index:990;left:50%;top:79px;display:flex;align-items:center;gap:6px;padding:7px;border:1px solid rgba(255,255,255,.85);border-radius:999px;background:rgba(245,251,255,.78);box-shadow:0 15px 45px rgba(48,103,150,.1);backdrop-filter:blur(15px);transform:translateX(-50%)}.prototype-switcher>span{padding:0 9px;color:#4e748b;font-size:.55rem;font-weight:800;letter-spacing:.13em}.prototype-switcher a{display:flex;align-items:center;gap:7px;padding:8px 11px;border-radius:999px;color:#52738a;font-size:.68rem;text-decoration:none;white-space:nowrap}.prototype-switcher a.active{background:#fff;color:#236f9b;box-shadow:0 5px 18px rgba(38,117,255,.1)}.prototype-switcher i{display:grid;place-items:center;width:20px;height:20px;border-radius:7px;background:linear-gradient(145deg,#2675ff,#28d8f5);color:#fff;font-style:normal;font-size:.6rem}.prototype-copy{position:relative;z-index:5;width:min(720px,52vw);padding:clamp(125px,15vh,175px) 0 155px clamp(28px,6vw,95px)}.prototype-copy.centered{width:min(850px,78vw);margin:auto;padding-inline:20px;text-align:center}.prototype-copy>span{color:#2675ff;font-size:.68rem;font-weight:800;letter-spacing:.18em}.prototype-copy h1{margin:25px 0 23px;font-size:clamp(4rem,6.4vw,7.4rem);font-weight:620;line-height:.86;letter-spacing:-.075em;text-wrap:balance}.prototype-copy h1 em{font-style:normal;background:linear-gradient(90deg,#2675ff,#7969ec,#18abc0);background-clip:text;-webkit-background-clip:text;color:transparent}.prototype-copy p{max-width:560px;color:#486880;font-size:1.06rem;line-height:1.65}.prototype-copy.centered p{margin-inline:auto}.prototype-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}.prototype-copy.centered .prototype-actions{justify-content:center}.prototype-actions a{padding:14px 19px;border:1px solid rgba(38,117,255,.2);border-radius:999px;background:#2675ff;color:#fff;font-size:.85rem;font-weight:750;text-decoration:none;box-shadow:0 14px 35px rgba(38,117,255,.18)}.prototype-actions a:last-child{background:rgba(255,255,255,.78);color:#275b79;box-shadow:none}.install-cue{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:25px;color:#5a778c;font-size:.7rem}.install-cue i{display:grid;place-items:center;width:20px;height:20px;border-radius:7px;background:#e7f5fc;color:#277ba4;font-style:normal;font-weight:800}.install-cue b{color:#65bbaa}.proto-world,.device-constellation,.action-environment{position:absolute;z-index:2;inset:10% 1% 7% 40%;perspective:1300px;pointer-events:none}.proto-desktop{position:absolute;inset:8% 3% 7%;transform:rotateY(-11deg) rotateX(4deg);transform-style:preserve-3d;transition:.9s}.proto-surface{height:100%;border:1px solid rgba(255,255,255,.8);border-radius:32px;background:linear-gradient(135deg,rgba(38,117,255,.18),rgba(40,216,245,.06),rgba(138,108,255,.16));box-shadow:0 35px 110px rgba(38,117,255,.12);backdrop-filter:blur(8px)}.proto-surface header{display:flex;gap:7px;align-items:center;padding:18px;border-bottom:1px solid rgba(255,255,255,.65)}.proto-surface header i{width:7px;height:7px;border-radius:50%;background:#28d8f5}.proto-surface header b{margin-left:auto;color:#396e8e;font-size:.58rem;letter-spacing:.13em}.proto-surface main{position:relative;height:calc(100% - 45px)}.proto-surface aside{position:absolute;left:2%;top:5%;bottom:5%;display:grid;align-content:start;gap:13px;width:7%;padding-top:12px;border-right:1px solid rgba(255,255,255,.55)}.proto-surface aside i{width:17px;height:17px;border-radius:6px;background:linear-gradient(145deg,#2675ff,#28d8f5)}.proto-app{position:absolute;padding:20px;border:1px solid rgba(255,255,255,.7);border-radius:22px;background:rgba(243,251,255,.28)}.app-main{left:12%;top:8%;width:51%;height:55%}.app-context{right:4%;top:18%;width:24%;height:29%}.proto-app span,.proto-memory b{display:block;color:#47809f;font-size:.56rem;letter-spacing:.13em}.proto-app b{display:block;margin-top:20px;color:#214e6a;font-size:1.35rem}.proto-app>i{display:block;width:72%;height:28%;margin-top:35px;border-radius:15px;background:linear-gradient(90deg,rgba(40,216,245,.22),rgba(138,108,255,.18))}.proto-memory{position:absolute;right:5%;bottom:7%;width:45%;height:22%;border:1px solid rgba(138,108,255,.25);border-radius:20px}.proto-memory i{position:absolute;width:8px;height:8px;border-radius:50%;background:#8a6cff;box-shadow:0 0 15px #8a6cff}.proto-memory i:nth-child(1){left:12%;top:55%}.proto-memory i:nth-child(2){left:48%;top:25%}.proto-memory i:nth-child(3){right:12%;top:60%}.proto-memory b{margin:12px}.proto-device{position:absolute;border:2px solid rgba(38,117,255,.22);background:rgba(255,255,255,.18);transition:.8s}.proto-device.phone{right:2%;top:9%;width:6%;height:19%;border-radius:12px}.proto-device.tablet{right:10%;bottom:1%;width:18%;height:18%;border-radius:15px}.proto-trust{position:absolute;inset:-8%;border:1px solid rgba(115,231,193,.3);border-radius:50%;transform:rotateX(68deg)}.prototype-intentions,.device-selector{position:absolute;z-index:6;left:50%;bottom:30px;width:min(670px,54vw);padding:13px 16px;border:1px solid #fff;border-radius:20px;background:rgba(244,251,255,.75);box-shadow:0 16px 50px rgba(35,101,153,.1);backdrop-filter:blur(14px);transform:translateX(-30%)}.prototype-intentions>span,.device-selector>span{display:block;margin-bottom:8px;color:#5b788e;font-size:.56rem;font-weight:800;letter-spacing:.15em}.prototype-intentions>div,.device-selector>div{display:flex;gap:5px}.prototype-intentions button,.device-selector button{padding:8px 11px;border:0;border-radius:999px;background:transparent;color:#557389;font:inherit;font-size:.72rem;cursor:pointer}.prototype-intentions button.active,.device-selector button.active{background:#fff;color:#226f9a;box-shadow:0 5px 18px rgba(38,117,255,.1)}.prototype-intentions p{margin:9px 2px 0;color:#617e92;font-size:.7rem}.hero-prototype-a[data-intent=focus] .app-context,.hero-prototype-a[data-intent=focus] .proto-memory{opacity:.15}.hero-prototype-a[data-intent=focus] .proto-desktop{transform:rotateY(-4deg) scale(1.06)}.hero-prototype-a[data-intent=learn] .proto-memory{width:68%;height:45%;right:4%;bottom:5%;background:rgba(138,108,255,.1)}.hero-prototype-a[data-intent=build] .app-main{width:28%;height:68%}.hero-prototype-a[data-intent=build] .app-context{width:31%;height:55%;right:30%}.hero-prototype-a[data-intent=continue] .proto-memory{transform:translateZ(180px);width:58%}.device-prototype{background:radial-gradient(circle at 50% 50%,rgba(38,117,255,.18),transparent 22%),linear-gradient(135deg,#f8fbff,#eef7ff 48%,#f6f1ff)}.device-constellation{inset:21% 7% 17%;}.foundation-path{position:absolute;left:8%;right:8%;top:53%;height:2px;background:linear-gradient(90deg,transparent,#28d8f5,#8a6cff,#73e7c1,transparent);box-shadow:0 0 18px #28d8f5}.device-form{position:absolute;display:grid;place-items:center;border:2px solid rgba(38,117,255,.22);background:rgba(255,255,255,.18);opacity:.42;transition:.65s}.device-form>div{width:74%;height:70%;border:1px solid rgba(40,216,245,.35);background:linear-gradient(145deg,rgba(38,117,255,.13),rgba(138,108,255,.12))}.device-form.active{opacity:1;border-color:#28d8f5;box-shadow:0 20px 60px rgba(38,117,255,.15);transform:translateY(-12px) scale(1.08)}.device-form.desktop{left:1%;top:26%;width:25%;height:42%;border-radius:15px}.device-form.phone{left:32%;top:35%;width:9%;height:34%;border-radius:17px}.device-form.tablet{right:30%;top:29%;width:17%;height:38%;border-radius:18px}.device-form.watch{right:3%;top:40%;width:10%;height:18%;border-radius:25px}.person-presence{position:absolute;left:45%;top:2%;text-align:center}.person-presence i{display:block;width:24px;height:24px;margin:auto;border-radius:50%;background:#ffb79f;box-shadow:0 0 45px rgba(255,183,159,.7)}.person-presence b{display:block;margin-top:9px;color:#396d89;font-size:.6rem;letter-spacing:.12em}.adaptive-interface{position:absolute;left:37%;right:32%;bottom:0;height:20%;border:1px solid rgba(255,255,255,.8);border-radius:20px;background:rgba(238,250,255,.48)}.adaptive-interface header,.adaptive-interface main{display:flex;gap:8px;padding:10px}.adaptive-interface span,.adaptive-interface i{display:block;height:4px;border-radius:5px;background:#28d8f5}.adaptive-interface span:first-child{width:30%}.adaptive-interface span:last-child{width:55%;opacity:.4}.adaptive-interface i{width:30%;height:30px;background:linear-gradient(145deg,rgba(38,117,255,.18),rgba(138,108,255,.15))}.device-selector{left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto 1fr 1fr;gap:10px;align-items:center}.device-selector>span{margin:0}.hero-prototype-b[data-person=student] .adaptive-interface{background:rgba(115,231,193,.2)}.hero-prototype-b[data-person=developer] .adaptive-interface{background:rgba(38,117,255,.18)}.hero-prototype-b[data-person=professional] .adaptive-interface{background:rgba(138,108,255,.15)}.action-environment{inset:11% 1% 9% 43%;}.command-stream{position:absolute;left:0;top:22%;width:25%;padding:18px;border-left:2px solid #28d8f5;background:rgba(255,255,255,.4)}.command-stream span{color:#377c9f;font-size:.58rem;letter-spacing:.14em}.command-stream b{display:block;margin-top:12px;color:#204e69}.command-stream i{display:block;width:85%;height:2px;margin-top:18px;background:linear-gradient(90deg,#28d8f5,transparent)}.action-path{position:absolute;left:27%;top:31%;display:flex;gap:19px}.action-path i{width:9px;height:9px;border-radius:3px;background:#2675ff;box-shadow:0 0 20px #28d8f5;animation:action-flow 2.4s ease-in-out infinite}.action-path i:nth-child(2){animation-delay:.25s}.action-path i:nth-child(3){animation-delay:.5s}.action-path i:nth-child(4){animation-delay:.75s}.result-workspace{position:absolute;right:2%;top:10%;width:51%;height:64%;border:1px solid #fff;border-radius:28px;background:linear-gradient(145deg,rgba(38,117,255,.16),rgba(40,216,245,.07),rgba(138,108,255,.16));box-shadow:0 28px 90px rgba(38,117,255,.13);transition:.75s}.result-workspace header{display:flex;justify-content:space-between;padding:18px;border-bottom:1px solid #fff}.result-workspace header b,.result-workspace header span{color:#347794;font-size:.58rem;letter-spacing:.13em}.result-workspace main{display:grid;grid-template-columns:1.2fr .8fr;gap:12px;height:55%;padding:18px}.result-workspace main div{border-radius:15px;background:rgba(255,255,255,.34)}.result-workspace main div:first-child{grid-row:span 2}.result-workspace footer{display:flex;gap:8px;padding:0 18px}.result-workspace footer i{width:15px;height:15px;border-radius:5px;background:#2675ff}.permission-line{position:absolute;right:8%;bottom:5%;display:flex;gap:8px;align-items:center;color:#3d826f;font-size:.58rem;letter-spacing:.12em}.permission-line i{width:8px;height:8px;border-radius:50%;background:#73e7c1;box-shadow:0 0 14px #73e7c1}.hero-prototype-c[data-intent=focus] .result-workspace main div:not(:first-child){opacity:.12}.hero-prototype-c[data-intent=learn] .result-workspace{background:linear-gradient(145deg,rgba(115,231,193,.2),rgba(40,216,245,.09))}.hero-prototype-c[data-intent=build] .result-workspace main{grid-template-columns:repeat(3,1fr)}.hero-prototype-c[data-intent=continue] .result-workspace{transform:translateX(-8%) scale(1.05)}@keyframes action-flow{0%,100%{transform:translateY(0);opacity:.3}50%{transform:translateY(-12px);opacity:1}}@media(max-width:900px){.prototype-switcher{top:74px;max-width:calc(100vw - 22px);overflow:auto}.prototype-switcher>span{display:none}.prototype-stage{min-height:930px}.prototype-copy,.prototype-copy.centered{width:auto;padding:130px 24px 470px;text-align:left}.prototype-copy h1{font-size:clamp(3.6rem,12vw,5.5rem)}.prototype-copy.centered p{margin-left:0}.prototype-copy.centered .prototype-actions{justify-content:flex-start}.proto-world,.device-constellation,.action-environment{inset:48% -15% 13% -5%}.prototype-intentions,.device-selector{left:18px;right:18px;bottom:24px;width:auto;transform:none}.device-selector{display:block}.device-selector>div{margin-top:7px;overflow:auto}}@media(max-width:580px){.prototype-stage{min-height:920px}.prototype-switcher a{font-size:0}.prototype-switcher a i{font-size:.6rem}.prototype-copy,.prototype-copy.centered{padding-top:115px}.prototype-copy h1{font-size:clamp(3.15rem,15vw,4.6rem)}.prototype-copy p{font-size:.92rem}.prototype-actions{display:grid;width:max-content}.install-cue{max-width:340px}.proto-world,.action-environment{inset:52% -42% 14% -15%;transform:scale(.82)}.device-constellation{inset:55% -17% 14%}.prototype-intentions>div{overflow:auto}.prototype-intentions button{white-space:nowrap}}@media(prefers-reduced-motion:reduce){.action-path i{animation:none}}
/* Homepage Phase-2 evidence and installation story v51 */
.proof-feature{position:relative}.hardware-scan{display:grid!important;grid-template-columns:.72fr 1.28fr;align-items:center;gap:24px}.hardware-machine{display:grid;place-items:center;align-content:center;min-height:260px;border:1px solid rgba(38,117,255,.17);border-radius:38% 62% 55% 45%;background:radial-gradient(circle,rgba(40,216,245,.2),rgba(138,108,255,.08) 55%,transparent 70%);transition:.5s}.hardware-machine>i{width:74px;height:54px;border:2px solid #4f9bc7;border-radius:8px;box-shadow:0 18px 0 -9px rgba(38,117,255,.2)}.hardware-machine b,.hardware-machine small{display:block;margin-top:18px;color:#315f7a;font-size:.66rem;letter-spacing:.1em}.hardware-machine small{margin-top:6px;color:#2d917b}.hardware-scan ol{display:grid;gap:8px;margin:0;padding:0;list-style:none}.hardware-scan li{display:grid;grid-template-columns:12px 1fr auto;align-items:center;gap:10px;padding:13px 15px;border-bottom:1px solid #dae8f0;color:#73899a;opacity:.42;transition:.35s}.hardware-scan li>i{width:7px;height:7px;border-radius:50%;background:#aebdc7}.hardware-scan li b{font-size:.68rem}.hardware-scan li.active{color:#315f78;opacity:1;transform:translateX(5px)}.hardware-scan li.active>i{background:#48c6a5;box-shadow:0 0 12px #48c6a5}.hardware-scan>a{grid-column:1/-1;justify-self:end;color:#2675a7;text-decoration:none;font-size:.78rem}.evidence-browser{display:grid!important;grid-template-rows:auto 1fr auto;overflow:hidden;padding:0!important}.evidence-browser header{display:flex;justify-content:space-between;padding:18px 22px;border-bottom:1px solid #dbe9f1;color:#37789a;font-size:.62rem;letter-spacing:.12em}.evidence-scope{padding:32px}.evidence-scope small{color:#3683a8;letter-spacing:.13em}.evidence-scope h3{max-width:16ch;margin:15px 0;font-size:clamp(1.8rem,3vw,2.7rem);line-height:1;color:#214d68}.evidence-scope p{max-width:520px;color:#668095;line-height:1.55}.evidence-signal{display:flex;align-items:center;gap:10px;padding:0 32px 25px;color:#56788e;font-size:.7rem}.evidence-signal i{width:8px;height:8px;border-radius:50%;background:#2675ff}.evidence-signal i:nth-child(2){background:#28d8f5}.evidence-signal i:nth-child(3){background:#73e7c1}.evidence-browser>a{padding:16px 25px;background:linear-gradient(90deg,rgba(38,117,255,.09),rgba(40,216,245,.06));color:#28729b;text-decoration:none}.download-journey{display:grid;grid-template-columns:.75fr 1.25fr;gap:clamp(45px,7vw,105px);align-items:center;width:min(1400px,calc(100% - 44px));margin:clamp(90px,12vw,170px) auto;padding:clamp(35px,5vw,75px);box-sizing:border-box;border:1px solid rgba(38,117,255,.16);border-radius:38px;background:radial-gradient(circle at 80% 30%,rgba(40,216,245,.14),transparent 30%),linear-gradient(135deg,#f7fbff,#eff7ff 48%,#f8f3ff)}.journey-copy>span{color:#2675ff;font-size:.68rem;font-weight:800;letter-spacing:.16em}.journey-copy h2{margin:18px 0;font-size:clamp(2.8rem,4.5vw,5rem);line-height:.92;letter-spacing:-.06em;color:#173f5b}.journey-copy p{color:#607c90;line-height:1.65}.journey-copy a{display:inline-flex;margin-top:15px;padding:12px 16px;border-radius:999px;background:#2675ff;color:#fff;text-decoration:none;font-size:.8rem;font-weight:750}.journey-experience{display:grid;grid-template-columns:.75fr 1.25fr;gap:22px}.journey-experience ol{display:grid;gap:6px;margin:0;padding:0;list-style:none}.journey-experience li{display:grid;grid-template-columns:30px 1fr;gap:10px;padding:11px;border-radius:15px;color:#78909f;cursor:pointer;opacity:.42;transition:.3s}.journey-experience li>i{display:grid;place-items:center;width:28px;height:28px;border:1px solid #cfe2ed;border-radius:9px;font-style:normal;font-size:.65rem}.journey-experience li b,.journey-experience li span{display:block}.journey-experience li span{margin-top:3px;font-size:.67rem}.journey-experience li.active{opacity:1;color:#315f79}.journey-experience li.current{background:rgba(255,255,255,.82);transform:translateX(5px)}.journey-experience li.current>i{border-color:#49c5b1;background:#eafaf6;color:#248774}.journey-visual{position:relative;display:grid;place-items:center;min-height:360px;border:1px solid rgba(255,255,255,.9);border-radius:27px;background:rgba(255,255,255,.46);overflow:hidden}.journey-device{width:72%;height:45%;border:2px solid rgba(38,117,255,.27);border-radius:17px;background:linear-gradient(145deg,rgba(38,117,255,.12),rgba(40,216,245,.08),rgba(138,108,255,.11));transition:.5s}.journey-device header{height:10%;border-bottom:1px solid rgba(255,255,255,.8)}.journey-device main{display:grid;place-items:center;height:85%;color:#337596;font-size:.68rem;letter-spacing:.12em}.journey-device main i{width:40%;height:3px;background:linear-gradient(90deg,#2675ff,#28d8f5)}.usb-media{position:absolute;left:8%;bottom:19%;display:grid;place-items:center;width:48px;height:75px;border:2px solid #50a9ca;border-radius:9px;background:#e9faff;transform:translateX(-120px);transition:.55s}.usb-media b{color:#27769e}.journey-2 .usb-media,.journey-3 .usb-media{transform:none}.journey-3 .usb-media{left:25%}.journey-4 .usb-media{left:27%;bottom:26%;transform:rotate(90deg)}.download-signal{position:absolute;top:17%;display:flex;gap:8px}.download-signal i{width:7px;height:7px;border-radius:50%;background:#28d8f5;animation:action-flow 2s infinite}.journey-visual>p{position:absolute;left:18px;right:18px;bottom:12px;text-align:center;color:#617d91;font-size:.7rem}.journey-4 .journey-device{border-color:#66ccb4;box-shadow:0 20px 65px rgba(66,196,170,.16)}@media(max-width:900px){.download-journey{grid-template-columns:1fr}.journey-experience{grid-template-columns:1fr 1.4fr}}@media(max-width:620px){.hardware-scan,.journey-experience{grid-template-columns:1fr}.download-journey{width:calc(100% - 24px);padding:28px 18px}.journey-visual{min-height:310px}.journey-experience ol{grid-template-columns:1fr 1fr}.hardware-machine{min-height:210px}}
/* Homepage visual reset — Intention-to-Action v52 */
.homepage-intention-hero .prototype-stage{min-height:calc(100svh - 68px);background:linear-gradient(118deg,#f8fbff 0%,#e8f5ff 28%,#dffcff 48%,#eee7ff 72%,#fff0eb 100%)}.homepage-intention-hero .prototype-stage:before{content:"";position:absolute;z-index:0;inset:-20%;background:conic-gradient(from 210deg at 68% 48%,transparent 0 12%,rgba(38,117,255,.22) 18%,transparent 25% 40%,rgba(40,216,245,.25) 48%,transparent 57% 70%,rgba(138,108,255,.2) 78%,transparent 88%);filter:blur(26px);animation:intention-atmosphere 15s ease-in-out infinite alternate}.homepage-intention-hero .prototype-copy{width:min(700px,49vw);padding-top:clamp(105px,13vh,145px)}.homepage-intention-hero .prototype-copy h1{max-width:12ch;font-size:clamp(3.65rem,5.4vw,6.3rem);line-height:.89}.homepage-intention-hero .action-environment{inset:7% 0 8% 34%;transform:perspective(1200px) rotateY(-4deg)}.homepage-intention-hero .result-workspace{right:0;top:7%;width:58%;height:72%;border:1px solid rgba(255,255,255,.95);background:linear-gradient(145deg,rgba(38,117,255,.28),rgba(40,216,245,.13) 46%,rgba(138,108,255,.25));box-shadow:0 45px 140px rgba(44,104,192,.22)}.homepage-intention-hero .result-workspace:before{content:"LIVING DESKTOP";position:absolute;left:22px;bottom:17px;color:#397493;font-size:.55rem;font-weight:800;letter-spacing:.16em}.homepage-intention-hero .command-stream{left:2%;top:26%;width:30%;padding:22px;border-left:3px solid #2675ff;background:linear-gradient(90deg,rgba(255,255,255,.82),rgba(226,249,255,.42));box-shadow:0 22px 70px rgba(38,117,255,.12);backdrop-filter:blur(11px)}.homepage-intention-hero .action-path{left:34%;top:36%}.homepage-intention-hero .permission-line{right:8%;bottom:8%;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.72)}.homepage-intention-hero .prototype-intentions{left:auto;right:4vw;bottom:31px;width:min(650px,48vw);transform:none;border-color:rgba(255,255,255,.95);background:rgba(238,250,255,.82)}.homepage-intention-hero[data-intent=focus] .result-workspace{width:52%;right:8%;background:linear-gradient(145deg,rgba(38,117,255,.2),rgba(115,231,193,.16))}.homepage-intention-hero[data-intent=learn] .result-workspace{transform:translate(-7%,3%) rotateY(3deg)}.homepage-intention-hero[data-intent=build] .result-workspace{width:64%;background:linear-gradient(135deg,rgba(38,117,255,.3),rgba(138,108,255,.27))}.homepage-intention-hero[data-intent=continue] .result-workspace{transform:translateX(-18%) scale(1.08)}@keyframes intention-atmosphere{from{transform:translate3d(-3%,-2%,0) rotate(-4deg)}to{transform:translate3d(4%,3%,0) rotate(5deg)}}@media(max-width:900px){.homepage-intention-hero .prototype-stage{min-height:930px}.homepage-intention-hero .prototype-copy{width:auto;padding:105px 24px 470px}.homepage-intention-hero .prototype-copy h1{font-size:clamp(3.35rem,12vw,5rem)}.homepage-intention-hero .action-environment{inset:45% -24% 13% -5%;transform:scale(.9)}.homepage-intention-hero .prototype-intentions{left:18px;right:18px;bottom:25px;width:auto}}@media(max-width:580px){.homepage-intention-hero .prototype-stage{min-height:920px}.homepage-intention-hero .prototype-copy h1{font-size:clamp(3rem,13.5vw,4.25rem)}.homepage-intention-hero .action-environment{inset:51% -48% 14% -18%;transform:scale(.76)}.homepage-intention-hero .install-cue{font-size:.62rem}}

/* ============================================================================
   HappilionOS Mobile View UX & Redesign Overrides
   ============================================================================ */

.nav-group {
    position: static;
    display: inline-block;
}

@media(min-width: 1101px) {
    /* Keep desktop dropdown fixed and centered relative to the viewport */
    .mega-shell.mega-directory-shell {
        position: fixed !important;
        top: 68px !important;
        left: 50% !important;
        right: auto !important;
        width: min(1480px, calc(100vw - 48px)) !important;
        max-height: calc(100dvh - 88px) !important;
        transform: translateX(-50%) !important;
        overflow: auto !important;
        z-index: 999 !important;
    }
}

@media(max-width: 1100px) {
    /* Accordion placement inside nav-group */
    .nav-group {
        display: block;
        width: 100%;
    }
    
    .nav-links.mobile-open .mega-shell {
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 12px 10px 20px !important;
        transform: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
    
    /* Improve accordion transition spacing */
    .mobile-open .mega-directory {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        min-height: 0 !important;
        background: rgba(0, 0, 0, 0.02) !important;
        padding: 12px !important;
        border-radius: 12px !important;
        margin-top: 4px !important;
    }

    /* Hide Language, Account, and Download Free buttons in header to avoid header crowding */
    .header-actions .utility-menu,
    .header-actions .download-menu {
        display: none !important;
    }
    
    /* Style for actions added inside the mobile menu drawer */
    .mobile-drawer-actions {
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid rgba(83, 153, 229, 0.15);
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .mobile-action-row {
        width: 100%;
        text-align: left;
    }
    
    .mobile-action-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 10px 14px;
        border: 1px solid rgba(80, 151, 230, 0.15);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.6);
        font-family: inherit;
        font-size: 14.5px;
        font-weight: 650;
        color: var(--deep-navy);
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .mobile-action-btn:active {
        background: rgba(225, 242, 255, 0.8);
    }
    
    .mobile-action-btn .chevron {
        font-size: 12px;
        transition: transform 0.2s;
        color: #1870dd;
        font-weight: bold;
    }
    
    .mobile-action-btn .chevron.rotate {
        transform: rotate(180deg);
    }
    
    .mobile-action-dropdown {
        margin-top: 6px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        border: 1px solid rgba(80, 151, 230, 0.08);
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-action-dropdown p {
        font-size: 12px;
        color: var(--blue-grey);
        line-height: 1.5;
        margin-bottom: 4px;
    }
    
    .mobile-action-dropdown button {
        display: block;
        width: 100%;
        min-height: 40px;
        padding: 8px 12px;
        border: 1px solid rgba(80, 151, 230, 0.1);
        border-radius: 8px;
        text-align: left;
        font-size: 13.5px;
        cursor: pointer;
        background: #fff;
        font-family: inherit;
        color: var(--deep-navy);
    }
    
    .mobile-action-dropdown button.active {
        background: rgba(225, 243, 255, 0.9);
        border-color: rgba(20, 104, 255, 0.2);
        color: #0e69db;
        font-weight: 600;
    }
    
    .mobile-action-dropdown button[disabled] {
        opacity: 0.55;
        cursor: not-allowed;
    }
    
    .mobile-action-dropdown .mobile-link {
        display: block;
        padding: 8px 4px;
        color: #1870dd;
        text-decoration: none;
        font-size: 13.5px;
        font-weight: 650;
    }
    
    .download-action {
        margin-top: 8px;
    }
    
    .mobile-download-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0055ff, #aa00ff) !important;
        color: #fff !important;
        text-decoration: none;
        font-size: 15px;
        font-weight: 750;
        box-shadow: 0 10px 24px rgba(0, 85, 255, 0.15);
    }
    
    .mobile-download-btn:active {
        transform: scale(0.98);
    }

    /* Force 48px minimum height for links and list items on mobile to satisfy touch requirements */
    .mobile-open .mega-link-list a {
        min-height: 48px !important;
        font-size: 14px !important;
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(82, 150, 226, 0.06);
    }
    
    /* Improve readability of categories horizontal scroll */
    .mobile-open .mega-category-tabs {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 4px 4px 12px !important;
        gap: 8px !important;
        mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%) !important;
        scrollbar-width: none !important;
    }
    
    .mobile-open .mega-category-tabs::-webkit-scrollbar {
        display: none !important;
    }
    
    .mobile-open .mega-category-tabs button {
        padding: 10px 16px !important;
        font-size: 13.5px !important;
        font-weight: 650 !important;
        border-radius: 20px !important;
        border: 1px solid rgba(20, 104, 255, 0.12) !important;
        background: #fff !important;
        box-shadow: 0 2px 6px rgba(0, 85, 255, 0.03) !important;
    }
    
    .mobile-open .mega-category-tabs button[aria-selected=true] {
        background: linear-gradient(90deg, #e5f2ff, #f3f0ff) !important;
        color: #0e69db !important;
        border-color: rgba(20, 104, 255, 0.25) !important;
    }
}

@media(max-width: 700px) {
    /* Force maximum title size to avoid wrapping of long words */
    h1, .living-copy h1, .prototype-copy h1, .universe-copy h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.65rem) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.04em !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
    
    h2, .why-manifesto h2, .journey-copy h2, .support-confidence h2 {
        font-size: clamp(1.65rem, 6.5vw, 2.15rem) !important;
        line-height: 1.2 !important;
        word-break: keep-all !important;
    }
    
    body {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

/* ============================================================================
   HappilionOS Mobile View Modernization & Premium Typography Controls (v47)
   ============================================================================ */

/* --- Default visibility states --- */
.mobile-nav-group {
    display: none;
}
.cart-menu-wrapper {
    display: none;
}
.mobile-account-avatar {
    display: none;
}

/* --- Mobile Header Viewport Shifts --- */
@media (max-width: 1100px) {
    /* Ensure header remains on top of switcher and page content */
    .header {
        z-index: 1050 !important;
    }

    /* Hide desktop elements */
    .desktop-search-btn {
        display: none !important;
    }
    .language-menu-wrapper {
        display: none !important;
    }
    .desktop-account-label {
        display: none !important;
    }
    .header-actions .download-menu {
        display: none !important;
    }

    /* Show mobile-specific elements */
    .mobile-nav-group {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        order: 1;
    }
    
    .cart-menu-wrapper {
        display: flex !important;
        align-items: center;
        order: 2;
    }

    .account-menu-wrapper {
        order: 3;
    }

    .mobile-account-avatar {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--text-primary);
        color: var(--text-primary);
        font-size: 0.85rem;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.8);
        transition: var(--transition-smooth);
    }
    .mobile-account-avatar:hover {
        background: rgba(0, 85, 255, 0.05);
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    /* Center logo absolutely to match reference design exactly */
    .logo-group {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 10 !important;
    }
    .logo-copy small {
        display: none !important;
    }
    .brand-pulse {
        display: none !important;
    }

    /* Header Inner Flex Layout */
    .header-inner {
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 66px !important;
        padding: 8px 16px !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto !important;
    }

    /* Cart and Account Buttons Styling */
    .cart-trigger-btn, .search-trigger, .account-trigger {
        background: none !important;
        border: none !important;
        color: var(--text-secondary) !important;
        cursor: pointer !important;
        padding: 8px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: var(--transition-smooth) !important;
    }
    .cart-trigger-btn:hover, .search-trigger:hover {
        color: var(--primary-blue) !important;
        background: rgba(0, 85, 255, 0.05) !important;
    }

    .cart-icon {
        color: var(--text-primary) !important;
    }
    
    .mobile-search-btn {
        padding: 6px !important;
        color: var(--text-primary) !important;
    }

    /* Mobile Drawer Custom Alignment */
    .nav-links {
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        z-index: 9999 !important;
        box-shadow: 0 24px 64px rgba(15, 20, 35, 0.22) !important;
    }
}

/* --- Mobile Typography & Readability (Standardize Sub-12px Font Sizes) --- */
@media (max-width: 900px) {
    /* Scale up too tiny font sizes across mobile layouts */
    .hero-system-strip {
        font-size: 0.8rem !important;
    }
    .universe-label {
        font-size: 0.78rem !important;
    }
    .intention-console > span {
        font-size: 0.78rem !important;
    }
    .intention-console button {
        font-size: 0.82rem !important;
    }
    .intention-console p {
        font-size: 0.8rem !important;
    }
    .universe-status {
        font-size: 0.78rem !important;
    }
    .universe-scroll {
        font-size: 0.78rem !important;
    }
    .prototype-switcher > span {
        font-size: 0.75rem !important;
    }
    .prototype-switcher a {
        font-size: 0.82rem !important;
    }
    .proto-surface header b {
        font-size: 0.78rem !important;
    }
    .proto-app span, .proto-memory b {
        font-size: 0.78rem !important;
    }
    .prototype-intentions > span {
        font-size: 0.78rem !important;
    }
    .prototype-intentions button {
        font-size: 0.82rem !important;
    }
    .prototype-intentions p {
        font-size: 0.82rem !important;
    }
    .person-presence b {
        font-size: 0.78rem !important;
    }
    .permission-line {
        font-size: 0.78rem !important;
    }
    .install-cue {
        font-size: 0.8rem !important;
    }
    .logo-copy small {
        display: none !important;
    }
}

@media (max-width: 620px) {
    .support-copy > span, 
    .support-quick header span, 
    .support-flow > div > span, 
    .support-engine header span, 
    .support-safety > div > span, 
    .support-foundations span, 
    .support-reality > span,
    .support-operations > header > span {
        font-size: 0.8rem !important;
    }
    .support-flow li i {
        font-size: 0.82rem !important;
    }
    .support-roadmap li > span {
        font-size: 0.78rem !important;
    }
    .support-metrics span {
        font-size: 0.82rem !important;
    }
    .support-tool-panel > div:first-child small {
        font-size: 0.78rem !important;
    }
    .status-grid span {
        font-size: 0.8rem !important;
    }
}