:root {
    --theme-accent: #7367F0; 
    --bg-base: #000000;
    --bg-surface: #0a0a0c;
    --bg-surface-elevated: #141417;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #27272a;
    --danger: #ef4444;
    --success: #10b981;
    
    --app-bg: #121214;
    --app-card: #141417;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #52525b; }
* { scrollbar-width: thin; scrollbar-color: #3f3f46 transparent; }

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1550px; }

.section-padding { padding: 100px 0; }

.ambient-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, var(--theme-accent) 0%, transparent 40%);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease;
}

p { font-size: 1.15rem; color: var(--text-secondary); }

.premium-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.logo { font-weight: 700; font-size: 1.25rem; color: var(--theme-accent); transition: color 0.5s ease; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: var(--text-primary); color: var(--bg-base) !important; padding: 0.5rem 1rem; border-radius: 6px; }

.hero { 
    text-align: center; 
    padding-top: 180px; 
    position: relative; 
    overflow: hidden; 
}
.hero-content { max-width: 800px; margin: 0 auto 3rem; position: relative; z-index: 2; }
.hero-content p { margin-bottom: 2.5rem; }

.desktop-environment { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; z-index: 2; }

.floating-badge {
    position: absolute;
    background: rgba(20, 20, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.05);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    white-space: nowrap;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.badge-tl { top: 15%; left: -220px; animation: float 6s ease-in-out infinite; }
.badge-bl { bottom: 20%; left: -200px; animation: float 7s ease-in-out infinite 1s; }
.badge-tr { top: 15%; right: -220px; animation: float 5.5s ease-in-out infinite 0.5s; }
.badge-br { bottom: 20%; right: -200px; animation: float 6.5s ease-in-out infinite 1.5s; }
.badge-bottom { 
    bottom: -100px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation: float-center 5s ease-in-out infinite 2s;
    border: 1px solid var(--theme-accent);
    box-shadow: 0 0 25px rgba(115, 103, 240, 0.25);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float-center {
    0%, 100% { transform: translate(-50%, 0px); }
    50% { transform: translate(-50%, -10px); }
}

@media (max-width: 1300px) {
    .floating-badge { display: none; }
}

.btn { display: inline-block; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.btn-primary { background: var(--theme-accent) !important; color: #ffffff !important; box-shadow: 0 4px 15px rgba(115, 103, 240, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(115, 103, 240, 0.6); }

.app-window { 
    background-color: var(--app-bg); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    height: 600px; 
    text-align: left; 
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.app-window.is-closed {
    border-color: rgba(115, 103, 240, 0.4);
    box-shadow: 0 0 50px rgba(115, 103, 240, 0.2), inset 0 0 20px rgba(115, 103, 240, 0.1);
}

.demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--app-bg);
    z-index: 20;
    transition: opacity 0.4s ease, visibility 0.4s;
    cursor: pointer;
}

.demo-overlay:hover .kb-key.active-key {
    box-shadow: 0 4px 0 #3b82f6, 0 0 25px rgba(59, 130, 246, 0.6);
}

.overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-inner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.app-window.is-closed .demo-overlay {
    opacity: 1;
    visibility: visible;
}

.app-window.is-closed .app-inner-content {
    opacity: 0;
    pointer-events: none;
}

.app-window:not(.is-closed) .demo-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-header { display: flex; justify-content: space-between; padding: 16px 24px; }
.header-left { display: flex; align-items: center; gap: 12px; }
.brand-logo { background-color: var(--theme-accent); color: white; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background-color 0.3s; }
.brand-name { font-weight: 700; font-size: 16px; }
.shortcut { color: var(--text-secondary); font-size: 13px; margin-left: 8px; }
.header-right { display: flex; gap: 12px; }
.icon-btn { background: transparent; border: none; color: var(--text-secondary); padding: 6px 10px; border-radius: 6px; cursor: pointer; }
.add-btn { background-color: var(--theme-accent); color: white; border: none; padding: 8px 16px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background-color 0.3s; }

.search-area { padding: 0 24px 16px; }
.search-box { background-color: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px 16px; display: flex; gap: 12px; }
.search-box input { background: transparent; border: none; width: 100%; color: white; outline: none; }

.module-nav { display: flex; gap: 4px; padding: 0 24px 16px; border-bottom: 1px solid var(--border-color); }
.module-tab { background: transparent; border: none; color: var(--text-secondary); padding: 8px 16px; border-radius: 8px; font-weight: 500; cursor: pointer; }
.module-tab.active { background-color: var(--theme-accent); color: white; }
.app-body { display: flex; flex: 1; overflow: hidden; }

.sidebar-container { width: 220px; background-color: var(--bg-surface); border-right: 1px solid var(--border-color); padding: 20px 12px; }
.sidebar-menu { display: none; flex-direction: column; gap: 4px; }
.sidebar-menu.active { display: flex; }
.sidebar-title { font-size: 11px; color: var(--text-secondary); font-weight: 700; padding: 0 12px; margin-bottom: 12px; }
.side-item { background: transparent; border: none; color: var(--text-secondary); text-align: left; padding: 10px 12px; border-radius: 8px; font-size: 14px; cursor: pointer; transition: background 0.3s; }
.side-item:hover { background: rgba(255,255,255,0.05); }
.side-item.active { background-color: var(--theme-accent); color: white; }

.content-container { flex: 1; padding: 24px 32px; overflow-y: auto; position: relative; scroll-behavior: smooth; }
.content-container.global-search-active .content-view { display: block !important; animation: none; }
.content-view { display: none; }
.content-view.active { display: block; animation: fadeIn 0.2s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.item-card { background-color: var(--app-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; display: flex; gap: 16px; margin-bottom: 12px; position: relative; cursor: pointer; transition: all 0.2s ease; }
.item-card:hover { background-color: var(--bg-surface-elevated); }
.item-card.copied { border-color: #10b981; background-color: rgba(16, 185, 129, 0.1); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.item-card.copied .card-title, .item-card.copied .card-desc, .item-card.copied .card-code { color: #10b981; }
.item-card.copied .card-icon { background-color: #10b981; color: #ffffff; }

.gallery-item { background: #1c1c21; border-radius: 8px; border: 1px solid #27272a; position: relative; cursor: pointer; transition: all 0.2s ease; }
.gallery-item.copied { border-color: #10b981; background-color: rgba(16, 185, 129, 0.1); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }

.copied-badge { position: absolute; top: 12px; right: 12px; background-color: #10b981; color: white; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: bold; display: flex; align-items: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.item-card.copied .copied-badge, .gallery-item.copied .copied-badge { opacity: 1; }

.card-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); transition: background 0.2s, color 0.2s; }
.card-details { flex: 1; }
.card-title { font-weight: 600; font-size: 14px; margin-bottom: 6px; transition: color 0.2s; }
.card-desc { color: var(--text-secondary); font-size: 13px; transition: color 0.2s; }
.card-code { color: var(--text-secondary); font-size: 13px; font-family: monospace; background: rgba(0,0,0,0.2); padding: 12px; border-radius: 6px; margin-top: 8px; transition: color 0.2s; }
.tag { font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 700; margin-left: 8px; }
.tag-ts { background-color: rgba(217, 119, 54, 0.15); color: #d97736; }
.tag-js { background-color: rgba(247, 223, 30, 0.15); color: #eab308; }
.tag-text { background-color: rgba(255,255,255,0.1); color: var(--text-secondary); }

.dark-section { background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base)); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.comparison-header { text-align: center; margin-bottom: 4rem; }
.comparison-grid { display: flex; align-items: stretch; justify-content: center; gap: 2rem; position: relative; margin-bottom: 3rem; }
.comp-card { flex: 1; background-color: var(--bg-surface-elevated); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; display: flex; flex-direction: column; max-width: 500px; transition: all 0.3s ease; }
.legacy-card { opacity: 0.7; }
.quickpaste-card { border: 2px solid var(--theme-accent); box-shadow: 0 0 30px -10px var(--theme-accent), inset 0 0 20px -10px var(--theme-accent); }
.comp-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.comp-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--bg-surface); border: 1px solid var(--border-color); }
.qp-icon { background: var(--theme-accent); color: white; border: none; transition: background 0.3s; }
.comp-titles h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.comp-subtitle { font-size: 0.9rem; color: var(--text-secondary); }
.comp-image-placeholder { width: 100%; height: 250px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 1.5rem; overflow: hidden; }
.comp-image-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.comp-list { list-style: none; flex: 1; }
.comp-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; color: var(--text-secondary); font-size: 0.95rem; }
.flaw-list li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); background: rgba(239, 68, 68, 0.1); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: bold; }
.pro-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); background: rgba(16, 185, 129, 0.1); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: bold; }
.vs-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: var(--bg-surface-elevated); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: var(--text-primary); z-index: 10; }

.trust-badges { display: flex; align-items: center; margin-top: 3rem; border-radius: 16px; background: var(--app-card); position: relative; }
.trust-badges::before { content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: linear-gradient(90deg, transparent, var(--theme-accent), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; background-size: 200% auto; animation: shimmer 3s linear infinite; pointer-events: none; }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.trust-badge { flex: 1; background: transparent; border: none; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; transition: transform 0.3s ease, background 0.3s ease; position: relative; }
.trust-badge:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.02); border-radius: 12px; }
.trust-badge:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(255, 255, 255, 0.08); }
.trust-icon { font-size: 1.5rem; transition: text-shadow 0.3s ease, transform 0.3s ease; }
.trust-badge:hover .trust-icon { text-shadow: 0 0 15px var(--theme-accent); transform: scale(1.1); }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 1rem; color: var(--text-primary); }
.trust-text span { font-size: 0.85rem; color: var(--text-secondary); }

.organize-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.organize-icon {
    background: var(--theme-accent);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.organize-text h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.organize-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.showcase-container {
    max-width: 1350px;
    margin: 0 auto 1.5rem;
    padding: 4px;
    border-radius: 12px;
    background: rgba(115, 103, 240, 0.08);
    border: 1px solid var(--theme-accent);
    box-shadow: 0 0 30px rgba(115, 103, 240, 0.15);
}

.showcase-frame {
    border-radius: 8px;
    overflow: hidden;
    background: #111114;
    position: relative;
    width: 100%;
    display: grid;
}

.showcase-img {
    width: 100%;
    height: auto;
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.showcase-img.active {
    opacity: 1;
    pointer-events: auto;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.showcase-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3f3f46;
    cursor: pointer;
    transition: background 0.3s;
}

.showcase-dots .dot.active {
    background: var(--theme-accent);
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
    max-width: 120px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    border-color: var(--theme-accent);
    background: rgba(115, 103, 240, 0.1);
    color: white;
}

.nav-item.active .nav-icon {
    color: var(--theme-accent);
}

.nav-icon {
    font-size: 22px;
    transition: color 0.3s;
}

.nav-label {
    font-size: 12px;
    font-weight: 500;
}

.showcase-footer-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.dynamic-gradient-text {
    background: linear-gradient(to right, #ffffff, var(--theme-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s ease;
}

.masonry-footer { text-align: center; padding: 1rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 30px; display: inline-block; margin: 3rem auto 0; position: relative; left: 50%; transform: translateX(-50%); }

.speed-container-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.speed-header-centered {
    text-align: center;
    margin-bottom: 2rem;
}
.power-user-tag { 
    display: inline-block; padding: 0.5rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 8px; font-size: 0.9rem; font-weight: 600; 
}

.speed-steps-row {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}

.speed-connector {
    width: 30px;
    height: 2px;
    background: var(--theme-accent);
    align-self: center;
    opacity: 0.5;
    margin-top: 3rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.speed-step-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-header {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}
.step-num {
    background: rgba(255,255,255,0.1);
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    height: fit-content;
}
.step-titles { display: flex; flex-direction: column; }
.step-titles h4 { font-size: 14px; margin-bottom: 2px; }
.step-titles span { font-size: 11px; color: var(--text-secondary); }

.speed-card {
    background: var(--app-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.speed-card.kb-card { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 20px rgba(59, 130, 246, 0.1); }
.speed-card.search-card { border-color: rgba(168, 85, 247, 0.4); box-shadow: 0 0 20px rgba(168, 85, 247, 0.1); }
.speed-card.paste-card { border-color: rgba(249, 115, 22, 0.4); box-shadow: 0 0 20px rgba(249, 115, 22, 0.1); }

.speed-card-footer {
    margin-top: auto;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
}

.kb-visual { display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: center; height: 100%; }
.kb-row { display: flex; gap: 8px; }
.kb-key { background: var(--bg-surface-elevated); border: 1px solid var(--border-color); border-radius: 8px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: bold; color: var(--text-secondary); box-shadow: 0 4px 0 rgba(0,0,0,0.3); }
.kb-key.dummy { width: 48px; opacity: 0.5; }
.kb-key.active-key { color: white; border-color: #3b82f6; background: rgba(59, 130, 246, 0.1); box-shadow: 0 4px 0 #3b82f6, 0 0 15px rgba(59, 130, 246, 0.4); transform: translateY(-2px); }
.kb-key.space-key { width: 140px; }

.mock-search-bar { background: var(--bg-base); border: 1px solid var(--border-color); border-radius: 8px; padding: 10px 14px; font-size: 13px; display: flex; align-items: center; margin-bottom: 1.5rem; color: white; }
.blinking-cursor { font-weight: bold; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.mock-search-list { display: flex; flex-direction: column; gap: 8px; }
.mock-item { background: var(--bg-surface-elevated); padding: 10px; border-radius: 6px; font-size: 12px; display: flex; align-items: center; justify-content: space-between; color: var(--text-secondary); }
.mock-item.active-mock { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.3); color: white; }
.mock-tag { background: rgba(255,255,255,0.05); padding: 2px 4px; border-radius: 4px; font-size: 9px; }

.paste-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.copied-pill { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); padding: 4px 10px; border-radius: 12px; font-size: 12px; font-weight: bold; }
.mock-code { font-family: monospace; font-size: 11px; line-height: 1.6; background: rgba(0,0,0,0.3); padding: 16px; border-radius: 8px; flex: 1; }

.speed-metrics-bar { display: flex; justify-content: space-around; align-items: center; background: var(--app-card); border: 1px solid var(--border-color); border-bottom: 2px solid var(--theme-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-radius: 20px; padding: 1.5rem; margin-top: 4rem; width: 100%; position: relative; overflow: hidden; transition: border-color 0.3s ease; }
.metric-item { display: flex; align-items: center; gap: 1rem; }
.metric-icon { font-size: 1.5rem; color: var(--theme-accent); transition: color 0.3s; }
.metric-text { display: flex; flex-direction: column; }
.metric-text strong { font-size: 1.1rem; color: var(--text-primary); }
.metric-text span { font-size: 0.85rem; color: var(--text-secondary); }
.metric-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

.bento-header { text-align: center; margin-bottom: 3rem; }
.eyebrow-title { color: var(--theme-accent); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; text-align: center; transition: color 0.3s ease; }
.bento-grid-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.bento-grid-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.bento-card { background-color: var(--app-card); border: 1px solid var(--border-color); border-radius: 16px; overflow: visible; display: flex; flex-direction: row; position: relative; transition: all 0.3s ease; }
.card-header-label { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background-color: var(--bg-base); padding: 0.4rem 1.5rem; font-size: 1.25rem; color: var(--text-primary); font-weight: 700; z-index: 5; white-space: nowrap; text-align: center; border-radius: 30px; }
.bento-card.large .card-header-label { font-size: 1.5rem; }

.glow-purple { border-top: 2px solid #a855f7; box-shadow: inset 0 20px 40px -20px rgba(168, 85, 247, 0.15); }
.glow-purple .card-header-label { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); border: 1px solid rgba(168, 85, 247, 0.5); }
.glow-pink { border-top: 2px solid #ec4899; box-shadow: inset 0 20px 40px -20px rgba(236, 72, 153, 0.15); }
.glow-pink .card-header-label { box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); border: 1px solid rgba(236, 72, 153, 0.5); }
.glow-blue { border-top: 2px solid #3b82f6; box-shadow: inset 0 20px 40px -20px rgba(59, 130, 246, 0.15); }
.glow-blue .card-header-label { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); border: 1px solid rgba(59, 130, 246, 0.5); }
.glow-indigo { border-top: 2px solid #6366f1; box-shadow: inset 0 20px 40px -20px rgba(99, 102, 241, 0.15); }
.glow-indigo .card-header-label { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); border: 1px solid rgba(99, 102, 241, 0.5); }
.glow-fuchsia { border-top: 2px solid #d946ef; box-shadow: inset 0 20px 40px -20px rgba(217, 70, 239, 0.15); }
.glow-fuchsia .card-header-label { box-shadow: 0 0 20px rgba(217, 70, 239, 0.3); border: 1px solid rgba(217, 70, 239, 0.5); }

.bento-card:hover { transform: translateY(-3px); }
.bento-card:not(.large) { flex-direction: row; height: 260px; }
.bento-card:not(.large) .bento-content { flex: 1.2; padding: 3rem 1rem 2rem 2rem; display: flex; flex-direction: column; }
.bento-card:not(.large) .bento-image { flex: 0.8; padding: 3rem 2rem 2rem 0; display: flex; align-items: center; }
.bento-card:not(.large) .bento-image img { width: 100%; height: 100%; object-fit: cover; object-position: left center; border-radius: 8px; border: 1px solid var(--border-color); }
.bento-card.large { height: 420px; }
.bento-card.large .bento-content { flex: 1; padding: 4rem 3rem 3rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.bento-card.large .bento-image { flex: 1; padding: 4rem 3rem 3rem 0; display: flex; align-items: center; }
.bento-card.large .bento-image img { width: 100%; height: 100%; object-fit: cover; object-position: left top; border-radius: 8px; border: 1px solid var(--border-color); }
.feature-bullets { list-style: none; margin: 1rem 0; }
.feature-bullets li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; color: var(--text-secondary); font-size: 0.95rem; }
.feature-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--text-primary); font-weight: bold; }
.learn-link { color: var(--text-primary); text-decoration: none; font-weight: 600; margin-top: auto; display: inline-block; transition: color 0.3s; font-size: 0.9rem; }
.learn-link:hover { color: var(--theme-accent); }

.pricing-header { text-align: center; margin-bottom: 3rem; }

.pricing-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, var(--theme-accent) 0%, transparent 65%);
    filter: blur(80px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    transition: background 0.3s ease;
}

.pricing-card {
    position: relative;
    z-index: 1;
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pricing-card-top-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--theme-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    margin: 0.2rem 0 1.5rem;
    line-height: 1;
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
    width: 100%;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px var(--theme-accent);
}

.btn-pricing {
    background: var(--theme-accent) !important;
    color: #ffffff !important;
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px var(--theme-accent);
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.btn-pricing:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 12px 30px -5px var(--theme-accent);
}

.modules-showcase {
    margin-top: 4.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}
.modules-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.modules-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1050px;
    margin: 0 auto;
}
.mod-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 86px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.mod-card:hover {
    transform: translateY(-3px);
    border-color: var(--theme-accent);
}
.mod-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.mod-card span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.site-footer { 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2.5rem 5%; 
    border-top: 1px solid var(--border-color); 
    font-size: 13px; 
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 4rem auto 0;
}

.hidden { opacity: 0; transform: translateY(30px); transition: all 0.8s; }
.delay-1 { transition-delay: 0.2s; }
.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero-network { display: none; }
    .bento-grid-top { grid-template-columns: 1fr; }
    .bento-grid-bottom { grid-template-columns: 1fr; }
    .bento-card:not(.large) { flex-direction: column; height: auto; }
    .bento-card:not(.large) .bento-image { padding: 0 2rem 2rem 2rem; }
    .bento-card.large { flex-direction: column; height: auto; }
    .bento-card.large .bento-image { padding: 0 3rem 3rem 3rem; height: 300px; }
    
    .speed-steps-row { flex-direction: column; }
    .speed-connector { display: none; }
    .speed-metrics-bar { flex-wrap: wrap; gap: 1rem; }
    .metric-divider { display: none; }
    .metric-item { width: 45%; }
}

@media (max-width: 968px) {
    .comparison-grid { flex-direction: column; align-items: center; gap: 3rem; }
    .comp-card { width: 100%; max-width: 100%; }
    .vs-circle { position: relative; top: auto; left: auto; transform: none; margin: -4rem auto -1.5rem auto; z-index: 10; }
    .trust-badges { flex-wrap: wrap; }
    .trust-badge { min-width: 40%; }
    .trust-badge::after { display: none !important; }
    .pricing-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .trust-badges { display: grid; grid-template-columns: 1fr; }
    .metric-item { width: 100%; }
    .pricing-card { padding: 2.5rem 1.5rem; }
}