Cult 2026 Devotion BMX Bike (21″ Toptube) (Matte Clear)
Original price was: $619.99.$186.00Current price is: $186.00.
Description
Cult 2026 Devotion BMX Bike Description:
The Cult 2026 Devotion BMX Bike is built for riders who want strength, style, and reliability in one complete setup. With a full 100% Chromoly frame, fork, and 4-Piece bars, sealed bearings throughout, double wall Cult Match rims, and the grippy Cult Vans Wafflecup 2.4â tires, this bike is dialed right out of the box. The 21â toptube and 13.25â chainstay create a balanced geometry that feels stable yet responsive, while components like the forged Salvation V5 top load stem, 3-piece heat treated cranks, and pivotal seat keep it both durable and clean. If youâve got true devotion to BMX, this bike is ready to match it.
NOTE: Raw and Translucent colors may show small veins or patches of surface rust under the finish. This is normal and does not affect the integrity of the product.
Specifications:
- Frame: 100% Chromoly w/ Invest Cast Dropouts (20.5″ Toptube)
- Fork: 100% Chromoly
- Headset: Sealed Integrated (1-1/8″)
- Stem: Forged Salvation V5 Top Load
- Bars: 100% Chromoly 4-Piece (9″ Rise) (30″ Width)
- Grips: Cult Crew Grips
- Cranks: 3-Piece Heat Treated Chromoly (175mm)
- Bottom Bracket: Mid, Sealed (19mm)
- Pedals: Cult Dak Nylon Pedals
- Sprocket: Cult Conviction Alloy 25T
- Chain: Cult 510
- Front Hub: Alloy Shell, Sealed Bearings (3/8″ Female Axle)
- Rear Hub: Alloy Shell Cassette, Sealed Bearings (14mm Male Axle)
- Driver: 9T, Sealed Bearing
- Front Rim: Cult Match Alloy (Double Wall)
- Rear Rim: Cult Match Alloy (Double Wall)
- Front Tire: Cult X Vans Wafflecup(20 x 2.4″)
- Rear Tire: Cult X Vans Wafflecup (20 x 2.4″)
- Seat: Pivotal Seat w/ CULT logo
- Seat Post: Pivotal Post (25.4mm)
- Seat Clamp: Integrated
- Brake Lever: Alloy
- Brakes: 990 U-Brake
- Gyro: –
- Gyro Tabs: Not Drilled
- Brake Mounts: Removable
- Extras: –
- Color: Matte Clear
- Weight: 25 lbs
Geometry:
- Toptube Length: 21″
- Chainstay Length: 13.25″
- Headtube Angle: 75°
- Seattube Angle: 71°
- Bottom Bracket Height: 11.8″
- Headtube Height: 5″
- Standover: 9.3″
- Recommended Sizing Guide: 5’8″ to 6’2″
Popular Accessories:
Pro-Tec Classic Certified Helmet
View Item
Dan’s Comp Deluxe 20″ BMX Inner Tube
View Item
DK Random Wrench V3 Tool
View Item
Space Brace Dennis Enarson Knee Pads
View Item
Cult Butter PC Peg
View Item
Kryptonite Kryptoflex Keeper 512 4-Digit Combo Cable Lock
View Item
Wooder x Dan’s Comp Tire Wedgie
View Item
Cult x Vans Flangeless Grips
View Item
Dan’s Comp Laced Bolt T-Shirt
View Item
Odyssey Grandstand V2 PC Pedals(9/16″)
View Item
Colony Paterico Pivotal Seat
View Item
Higher Footwear Crypt Canvas Shoes
View Item
document.addEventListener("DOMContentLoaded", function() { // Select all elements with the class 'recommended-accessory-marketing-price' const priceElements = document.querySelectorAll('.recommended-accessory-marketing-price');
priceElements.forEach(function(priceElement) { const hasStrikethrough = priceElement.querySelector('s');
if (!hasStrikethrough) { const marketingDiv = priceElement.closest('.recommended-accessory-marketing'); const button = marketingDiv.querySelector('.recommended-accessory-marketing-button'); const productLink = marketingDiv.querySelector('a[href]');
if (button && productLink) {
button.textContent = "View Item"; button.href = productLink.href; button.removeAttribute('onclick'); button.style.backgroundColor = '#464647'; button.style.color = '#fff'; button.style.border = '1px solid #464647'; } } }); });
document.addEventListener("DOMContentLoaded", () => { const titles = document.querySelectorAll(".recommended-accessory-marketing-title"); titles.forEach(title => { if (title.textContent.length > 100) { title.textContent = title.textContent.slice(0, 100); } }); });
function cleanImageSrcSmall() { // Get all img elements on the page const smallImages = document.querySelectorAll('img');
// Loop through each img element smallImages.forEach((img) => { const src = img.getAttribute('src');
// Check if the src contains the unwanted path and remove it if (src.includes('cdn-cgi/image/f=auto,width=200/')) { const cleanedSrcSmall = src.replace('cdn-cgi/image/f=auto,width=200/', ''); img.setAttribute('src', cleanedSrcSmall); } }); }
document.addEventListener('DOMContentLoaded', cleanImageSrcSmall);
document.addEventListener("DOMContentLoaded", function () { const MOBILE_BREAKPOINT = 598;
function updateControls(carousel, currentIndex) { const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next'); const scrollContainer = carousel.querySelector('.scroll-container'); const totalItems = scrollContainer.querySelectorAll('.scroll-item').length;
prevButton.style.display = currentIndex === 0 ? 'none' : 'block'; nextButton.style.display = currentIndex === totalItems - 1 ? 'none' : 'block'; }
function scrollNext(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0;
if (scrollItem && currentIndex < scrollContainer.children.length - 1) { scrollContainer.scrollLeft += scrollItem.clientWidth; currentIndex++; } carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); } function scrollPrev(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; if (scrollItem && currentIndex > 0) { scrollContainer.scrollLeft -= scrollItem.clientWidth; currentIndex--; }
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function onScroll(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); if (!scrollItem) return;
const scrollLeft = scrollContainer.scrollLeft; const itemWidth = scrollItem.clientWidth; const currentIndex = Math.round(scrollLeft / itemWidth);
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function initializeCarousel(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next');
prevButton.addEventListener('click', function () { scrollPrev(carousel); });
nextButton.addEventListener('click', function () { scrollNext(carousel); });
scrollContainer.addEventListener('scroll', function () { onScroll(carousel); });
carousel.setAttribute('data-current-index', 0); updateControls(carousel, 0); }
const carousels = document.querySelectorAll('._carousel'); carousels.forEach(initializeCarousel);
window.addEventListener('resize', function () { carousels.forEach(function (carousel) { const currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; updateControls(carousel, currentIndex); }); }); });
For assistance building your new bike, please check out our tech help section here for instructions and tips on how to build your bike to ensure it is safe.
Dan’s Comp recommends riding with a helmet to protect that brain. Shop our selection of freestyle helmets here.
Need help finding the right bike for you? Not sure what size would suit you best? Check out our BMX buyers guide video below!
Note: To ensure that every component on your bicycle is working properly, Dan’s Comp recommends that all bikes be assembled by a qualified mechanic. Improper assembly of your bicycle may lead to premature wear or failure of individual components such as headsets, crank assembly and wheels. Failure to do so may void the manufacturer warranty.
This product was added to our catalog on August 29, 2025









