Racelogic-Style 4" Digital Lap Timer
:root { --blue: #1a56db; --blue-dark: #1341aa; --blue-light: #eaf0fd; --blue-mid: #c2d4f8; --text: #111111; --text-soft: #444444; --muted: #888888; --border: #e5e9f5; --card-bg: #f 4f7fe; --white: #ffffff; --accent: #f0a500; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { background: var(--white); color: var(--text); font-family: 'Source Sans 3', sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; } /* ── HERO TEXT BAND ── */ .hero { background: var(--white); border-bottom: 1px solid #eeeeee; text-align: left; padding: 0 16px 24px; } .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; } .hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--blue); flex-shrink: 0; } .hero .hero-h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(28px, 5vw, 52px); font-weight: 700; line-height: 1.0; text-transform: uppercase; letter-spacing: .02em; color: var(--text); margin-bottom: 12px; } .hero .hero-h1 em { font-style: normal; color: var(--blue); } .hero-sub { font-size: 15px; color: #666; } /* ── HERO IMAGE ── */ .hero-image-wrap { width: 100%; max-height: 420px; overflow: hidden; line-height: 0; } .hero-image-wrap img { width: 100%; max-height: 420px; height: auto; object-fit: cover; object-position: center; display: block; } .img-caption { background: var(--blue); padding: 10px 16px; font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #ffffff; } /* ── LAYOUT ── */ .container { max-width: 100%; padding: 28px 16px 60px; } /* ── INTRO ── */ .intro { font-size: 17px; line-height: 1.8; color: var(--text-soft); padding-left: 20px; border-left: 3px solid var(--blue); margin-bottom: 44px; } /* ── SECTION TITLES ── */ .sec-title { font-family: 'Rajdhani', sans-serif; font-size: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text); display: flex; align-items: center; gap: 12px; margin-bottom: 18px; } .sec-title::after { content: ''; flex: 1; height: 1px; background: #e5e5e5; } /* ── SECTION TEXT ── */ .sec-body { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; line-height: 1.75; } .sec-body strong { color: var(--text); font-weight: 500; } /* ── FEATURE GRID ── */ .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 44px; margin-bottom: 44px; } .feature-card { background: var(--card-bg); padding: 20px; position: relative; overflow: hidden; transition: transform .2s; } .feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--blue); } .feature-card:hover { transform: translateY(-2px); } .feature-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text); margin-bottom: 6px; } .feature-card p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; } /* ── DIVIDER ── */ .divider { height: 1px; background: var(--border); margin: 40px 0; } /* ── COMPATIBILITY BADGES ── */ .compat-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; } .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; } .badge { background: var(--blue-light); border: 1px solid var(--blue-mid); padding: 6px 16px; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-dark); } /* ── WHAT'S IN THE BOX ── */ .box-contents { background: #f9fafc; padding: 20px 24px; margin-bottom: 10px; } .box-contents ul { list-style: none; margin: 0; padding: 0; } .box-contents li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eaedf5; font-size: 14px; color: var(--text-soft); } .box-contents li:last-child { border-bottom: none; } .box-contents li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 8px; } .note { font-size: 12px; color: var(--muted); font-style: italic; } /* ── SUPPORT STRIP ── */ .support-strip { background: var(--blue); display: flex; align-items: center; gap: 20px; padding: 24px 30px; margin: 40px 0; } .support-strip-title { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #ffffff; margin-bottom: 3px; } .support-strip-text { font-size: 14px; color: rgba(255,255,255,.8); } /* ── ABOUT ── */ .about { padding: 0; } .about p { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 14px; } .about p:last-of-type { margin-bottom: 0; } .distributor-badge { display: inline-flex; align-items: center; gap: 6px; background: #fffbf0; border: 1px solid #f0d070; padding: 7px 16px; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8a6000; margin-top: 16px; } /* ── MOBILE ── */ @media (max-width: 600px) { .hero-image-wrap { max-height: none; } .hero-image-wrap img { max-height: none; height: auto; } .features { grid-template-columns: 1fr; } .support-strip { padding: 20px 16px; } .about { padding: 0; } .box-contents { padding: 16px; } .divider { margin: 28px 0; } } /* ── FAQ ── */ .faq { margin-bottom: 44px; } .faq details { border: 1px solid var(--border); border-left: 3px solid var(--blue); margin-bottom: 10px; background: #f9fafc; } .faq summary { cursor: pointer; list-style: none; padding: 14px 44px 14px 18px; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--text); position: relative; } .faq summary::-webkit-details-marker { display: none; } .faq summary::after { content: '+'; position: absolute; right: 18px; top: 11px; font-size: 22px; line-height: 1; color: var(--blue); } .faq details[open] summary::after { content: '–'; } .faq .faq-a { padding: 0 18px 16px; font-size: 14px; color: var(--text-soft); line-height: 1.7; } /* HERO FEATURE (image left, text right) */ .hero-feature { display: flex; gap: 32px; align-items: center; padding: 24px 16px 28px; } .hero-feature .hf-img { flex: 0 0 44%; max-width: 44%; } .hero-feature .hf-img img { width: 100%; height: auto; display: block; } .hero-feature .hf-text { flex: 1 1 auto; } .hero-feature .hero-sub { margin-bottom: 16px; } .hf-points { list-style: none; margin: 0; padding: 0; } .hf-points li { display: flex; align-items: flex-start; gap: 12px; padding: 5px 0; font-size: 14px; color: var(--text-soft); line-height: 1.5; } .hf-points li::before { content: ''; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 7px; background: var(--blue); } @media (max-width: 600px) { .hero-feature { flex-direction: column; gap: 18px; align-items: flex-start; padding: 16px 16px 22px; } .hero-feature .hf-img { max-width: 100%; flex-basis: auto; } } /* HANDCRAFTED NOTE */ .handmade { background: #fffbf0; border-left: 3px solid var(--accent); padding: 22px 26px; margin: 12px 0 44px; } .handmade h2 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #8a6000; margin-bottom: 8px; } .handmade p { font-size: 14px; color: var(--text-soft); line-height: 1.75; margin: 0; } @media (max-width: 600px) { .handmade { padding: 18px; } } Sim Racing · Racelogic-Style Lap Timer · Australia & NZ NCRD 4″ Digital Lap Timer A 4-inch Racelogic-style SimHub dashboard for your rig, handcrafted by NCRD. 4-inch (10.1cm) VoCore touchscreen Racelogic-style lap-timer dash, pre-loaded Runs on SimHub, fully customisable Optional mounts for popular wheel bases Connects over a single USB-C cable Take your sim racing rig to the next level with the NCRD 4-inch (10.1cm) Touchscreen Digital Lap Timer, a Racelogic-style dashboard built for sim racers who want authentic, race-accurate timing. Powered by SimHub and pre-loaded with a custom NCRD dash file, it faithfully replicates the iconic lap timers used in real-world GT racing, right on your rig. Authentic Racelogic-Style Lap Timer The NCRD dash ships pre-loaded with a custom SimHub dash file developed in-house, faithfully replicating the look and feel of the Racelogic lap timers used by professional GT teams. Whether you are chasing a lap record or dialling in a setup, you get lap and sector times, deltas and live timing data right in front of you. Because it runs on SimHub, the display is fully customisable. SimHub Powered Runs on SimHub and ships with a custom NCRD dash file, so the Racelogic-style display works straight out of the box. Racelogic-Style Timing Lap and sector times, deltas and position in the authentic Racelogic layout used in real GT racing. Plug & Play USB-C Connects to your PC over a single USB-C link, with an L-shaped connector included to keep the cable tidy. Easy Mounting All mounting hardware included, with optional dedicated mounts for popular sim racing wheel bases. Flexible Mounting for Your Rig Every unit ships with all required mounting hardware. Optional dedicated mounts are available for the most popular sim racing wheel bases. Want it mounted directly to your wheel base? Contact us before ordering and we will sort the right mount. Optional wheel base mounts available for: Simagic MOZA Asetek Simucube What's Included 1 × NCRD 4″ Touchscreen Lap Timer (VoCore) Mount and mounting hardware 1 × L-shaped USB connector Step-by-step installation instructions Software setup guidance Note: USB cable not included. Handcrafted, made to order Every NCRD dash is built by hand, not mass-produced. Each unit is individually assembled with custom 3D-printed parts and finished in small batches by the NCRD team, so you are getting a genuine enthusiast-built piece with real character rather than a factory-line gadget. Because each one is made by hand, small cosmetic variations in the finish are part of the charm rather than a fault, giving every unit its own look. If you value sim gear crafted by fellow racers, that is exactly what this is. Dedicated Customer Support Questions about installation, mounting or setting up SimHub? Our team is on standby to help you get your NCRD lap timer dialled in. Frequently Asked Questions What is the NCRD 4" Digital Lap Timer?A 4-inch (10.1cm) VoCore touchscreen dash for your sim rig that replicates the Racelogic lap timer used in real-world GT racing. It is driven by SimHub and ships pre-loaded with a custom NCRD dash file. Do I need SimHub to use it?Yes. The dash runs on the SimHub application on your PC and comes pre-loaded with the Racelogic-style dash file, so it works straight out of the box. Every layout is customisable in SimHub. Which sims and games does it work with?Anything SimHub supports, including iRacing, Assetto Corsa, Assetto Corsa Competizione, rFactor 2, Automobilista 2 and the F1 series. SimHub handles the link to the game. What does it display?Lap and sector times, deltas, position, fuel and the other timing data of the Racelogic-style layout. Because it runs on SimHub you can tailor exactly what is shown. What size is the screen?It is a 4-inch (10.1cm) VoCore touchscreen, compact enough to sit neatly on your wheel base or rig without blocking your view. How does it connect to my PC?Over a single USB-C connection. An L-shaped USB connector is included to keep the cable tidy. A USB cable is not included, so you will need a USB-C data cable to reach your PC. How does it mount?Every unit ships with all required mounting hardware. Optional dedicated mounts are available for the most popular sim racing wheel bases. To mount it directly to your wheel base, contact us before ordering. Which wheel bases can it mount to?Optional dedicated mounts are available for popular bases including Simagic, MOZA, Asetek and Simucube. Get in touch and we will sort the right mount for your setup. Is a USB cable included?No. The kit includes the lap timer, mount and mounting hardware, an L-shaped USB connector, and setup guidance. You supply the USB-C data cable to suit your PC. Can I customise the dashboard?Yes. It arrives pre-loaded with the Racelogic-style dash, and because it runs on SimHub you can adjust it or load other community dashboards to suit your car and discipline. Do you ship to Australia and New Zealand, and who supports it?Yes. Player1 Sim Gear is the authorised Australian and New Zealand distributor for NCRD, so you order locally and we handle setup help and any warranty questions here. { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What is the NCRD 4\" Digital Lap Timer?", "acceptedAnswer": { "@type": "Answer", "text": "A 4-inch (10.1cm) VoCore touchscreen dash for your sim rig that replicates the Racelogic lap timer used in real-world GT racing. It is driven by SimHub and ships pre-loaded with a custom NCRD dash file." } }, { "@type": "Question", "name": "Do I need SimHub to use it?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. The dash runs on the SimHub application on your PC and comes pre-loaded with the Racelogic-style dash file, so it works straight out of the box. Every layout is customisable in SimHub." } }, { "@type": "Question", "name": "Which sims and games does it work with?", "acceptedAnswer": { "@type": "Answer", "text": "Anything SimHub supports, including iRacing, Assetto Corsa, Assetto Corsa Competizione, rFactor 2, Automobilista 2 and the F1 series. SimHub handles the link to the game." } }, { "@type": "Question", "name": "What does it display?", "acceptedAnswer": { "@type": "Answer", "text": "Lap and sector times, deltas, position, fuel and the other timing data of the Racelogic-style layout. Because it runs on SimHub you can tailor exactly what is shown." } }, { "@type": "Question", "name": "What size is the screen?", "acceptedAnswer": { "@type": "Answer", "text": "It is a 4-inch (10.1cm) VoCore touchscreen, compact enough to sit neatly on your wheel base or rig without blocking your view." } }, { "@type": "Question", "name": "How does it connect to my PC?", "acceptedAnswer": { "@type": "Answer", "text": "Over a single USB-C connection. An L-shaped USB connector is included to keep the cable tidy. A USB cable is not included, so you will need a USB-C data cable to reach your PC." } }, { "@type": "Question", "name": "How does it mount?", "acceptedAnswer": { "@type": "Answer", "text": "Every unit ships with all required mounting hardware. Optional dedicated mounts are available for the most popular sim racing wheel bases. To mount it directly to your wheel base, contact us before ordering." } }, { "@type": "Question", "name": "Which wheel bases can it mount to?", "acceptedAnswer": { "@type": "Answer", "text": "Optional dedicated mounts are available for popular bases including Simagic, MOZA, Asetek and Simucube. Get in touch and we will sort the right mount for your setup." } }, { "@type": "Question", "name": "Is a USB cable included?", "acceptedAnswer": { "@type": "Answer", "text": "No. The kit includes the lap timer, mount and mounting hardware, an L-shaped USB connector, and setup guidance. You supply the USB-C data cable to suit your PC." } }, { "@type": "Question", "name": "Can I customise the dashboard?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. It arrives pre-loaded with the Racelogic-style dash, and because it runs on SimHub you can adjust it or load other community dashboards to suit your car and discipline." } }, { "@type": "Question", "name": "Do you ship to Australia and New Zealand, and who supports it?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. Player1 Sim Gear is the authorised Australian and New Zealand distributor for NCRD, so you order locally and we handle setup help and any warranty questions here." } } ] } About NCRD & Player1 Sim Gear No Content Racing Division (NCRD) is a Toronto-based boutique creator of custom sim racing accessories, born from a genuine passion for bringing VoCore-based digital dashboards to the sim racing community at an accessible price point. The NCRD team take a quality-first approach to everything they build. Player1 Sim Gear is proud to be the Official Australian & New Zealand Distributor for NCRD, bringing their full line-up of sim racing accessories to racers across Australia and New Zealand. ★ Official Australian & NZ Distributor for NCRD