Description
/* ===== USWS Brand Tokens ===== */ :root { –navy: #012c64; –red: #ED1C2A; –red-hover: #d7182e; –txt: #1a2332; –txt-mid: #3a4a5c; –txt-lt: #58667a; –bg: #f7f8fa; –white: #ffffff; –border: #e5e7eb; –radius: 10px; –text-small: 19px; } /* ===== Base ===== */ .pulsar-pdp { font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, sans-serif; font-size: 24px; line-height: 1.6; color: var(–txt-mid); max-width: 960px; margin: 0 auto; padding: 0 1rem; } .pulsar-pdp *, .pulsar-pdp *::before, .pulsar-pdp *::after { box-sizing: border-box; } /* ===== Shared section helpers ===== */ .p-section { margin-top: 2.5rem; margin-bottom: 7rem; text-align: center; } .p-section–left { text-align: left; } .p-eyebrow { display: block; font-size: 16px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(–red); margin: 0 0 1rem; } .p-heading { font-size: 32px; font-weight: 800; color: var(–txt); margin: 0 0 .8rem; line-height: 1.2; } .p-body { max-width: 640px; margin: 0 auto 1.25rem; color: var(–txt-mid); font-size: 16px; } .p-section–left .p-body { margin-left: 0; } /* ===== Hero ===== */ .pulsar-hero { text-align: center; margin-bottom: 3.5rem; } .pulsar-hero__tag { font-size: 16px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(–red); margin: 0 0 .5rem; } .pulsar-hero__h { font-size: 30px; font-weight: 800; color: var(–txt); margin: 0 0 1.5rem; line-height: 1.2; } .pulsar-hero__sub { margin: 0 auto; color: var(–txt-mid); max-width: 640px; font-size: 16px; } /* ===== Stat bar ===== */ .pulsar-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem; } .pulsar-stat { flex: 1 1 120px; min-width: 100px; max-width: 160px; background: var(–navy); border-radius: var(–radius); padding: 1rem 1rem 1.15rem; text-align: center; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 2px 8px rgba(1,44,100,.2); } .pulsar-stat__icon { display: block; font-size: 22px; line-height: 1; margin-bottom: .35rem; opacity: .7; } .pulsar-stat__num { display: block; font-size: 19px; font-weight: 800; color: #fff; line-height: 1.1; } .pulsar-stat__lbl { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .15rem; display: block; } /* ===== Benefits Grid ===== */ .p-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem auto 0; max-width: 900px; text-align: left; } .p-benefit { background: var(–bg); border: 1px solid var(–border); border-radius: var(–radius); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: transform 0.2s, box-shadow 0.2s; } .p-benefit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,20,46,.06); } .p-benefit__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(–white); border-radius: 50%; border: 1px solid var(–border); font-size: 22px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(1,44,100,.04); } .p-benefit__content { display: flex; flex-direction: column; } .p-benefit__title { font-size: 17px; font-weight: 700; color: var(–txt); margin: 0 0 0.35rem; line-height: 1.3; } .p-benefit__text { font-size: 15px; color: var(–txt-lt); margin: 0; line-height: 1.5; } /* ===== Feature cards ===== */ .p-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 1.25rem 0; } .p-card { flex: 1 1 200px; max-width: 280px; background: var(–white); border: 1px solid var(–border); border-radius: var(–radius); padding: 1.25rem 1.35rem; transition: box-shadow .2s; } .p-card:hover { box-shadow: 0 4px 16px rgba(6,20,46,.08); } .p-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 18px; background: rgba(1,44,100,.07); color: var(–navy); font-size: 43px; margin-bottom: .75rem; } .p-card__title { font-size: 16px; font-weight: 700; color: var(–txt); margin: 0 0 .3rem; } .p-card__text { font-size: 16px; color: var(–txt-lt); margin: 0; line-height: 1.5; } /* ===== Callout Section ===== */ .p-callout { max-width: 720px; margin: 1.5rem auto 2.5rem; padding: 1.75rem 2rem; background: var(–bg); border: 1px solid var(–border); border-radius: var(–radius); text-align: center; font-size: 16px; color: var(–txt-mid); line-height: 1.6; box-shadow: 0 4px 16px rgba(6,20,46,.04); } .p-callout strong { display: block; color: var(–navy); font-size: 18px; margin-bottom: 0.5rem; } /* ===== Comparison table ===== */ .p-table-wrap { overflow-x: auto; border-radius: var(–radius); border: 1px solid var(–border); border-top: 4px solid var(–navy); margin: 1.25rem auto; max-width: 720px; box-shadow: 0 2px 12px rgba(1,44,100,.08); } .p-table { width: 100%; border-collapse: collapse; background: var(–white); font-size: 16px; } .p-table th { padding: 13px 18px; font-weight: 700; text-align: center; color: #fff; background: var(–navy); border-bottom: 2px solid var(–border); } .p-table th.col-p { color: #fff; } .p-table td { padding: 12px 18px; border-bottom: 1px solid var(–border); color: var(–txt-mid); } .p-table tr:last-child td { border-bottom: none; } .p-table td.col-p { font-weight: 600; color: var(–txt); } .p-table .win { color: var(–navy); } /* ===== Savings callout ===== */ .p-savings { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 720px; margin: 1.5rem auto; } @media (max-width: 600px) { .p-savings { grid-template-columns: 1fr; } } .p-savings__box { border-radius: var(–radius); padding: 1.5rem; text-align: center; } .p-savings__box–old { background: var(–bg); border: 1px solid var(–border); } .p-savings__box–new { background: var(–navy); color: #fff; } .p-savings__label { display: block; font-size: 19px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; } .p-savings__box–old .p-savings__label { color: var(–txt-lt); } .p-savings__box–new .p-savings__label { color: rgba(255,255,255,.55); } .p-savings__price { display: block; font-size: 35px; font-weight: 800; line-height: 1.1; } .p-savings__box–old .p-savings__price { color: var(–txt-lt); text-decoration: line-through; } .p-savings__box–new .p-savings__price { color: #fff; } .p-savings__note { display: block; font-size: 19px; margin-top: .35rem; } .p-savings__box–old .p-savings__note { color: var(–txt-lt); } .p-savings__box–new .p-savings__note { color: rgba(255,255,255,.65); } /* ===== Specs table ===== */ .p-specs-wrap { overflow-x: auto; border-radius: var(–radius); border: 1px solid var(–border); border-top: 4px solid var(–navy); margin: 1.25rem auto; max-width: 480px; box-shadow: 0 2px 12px rgba(1,44,100,.08); } .p-specs { width: 100%; border-collapse: collapse; background: var(–white); font-size: 16px; } .p-specs th { text-align: left; padding: 13px 18px; font-weight: 700; color: var(–txt); background: rgba(1,44,100,.05); border-bottom: 1px solid var(–border); border-right: 2px solid var(–navy); width: 42%; } .p-specs td { padding: 13px 18px; color: var(–txt-mid); font-weight: 600; border-bottom: 1px solid var(–border); text-align: right; } .p-specs tr:last-child th, .p-specs tr:last-child td { border-bottom: none; } .p-specs-link { text-align: center; margin: 1.25rem 0 0; font-size: 16px; } .p-specs-link a { color: var(–red); font-weight: 600; text-decoration: none; } .p-specs-link a:hover { text-decoration: underline; } /* ===== Pairs-perfectly cards ===== */ .p-pairs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin: 1.5rem 0; } .p-pairs-card { flex: 1 1 220px; max-width: 280px; background: var(–white); border: 1px solid var(–border); border-radius: var(–radius); overflow: hidden; transition: box-shadow .2s, transform .15s; } .p-pairs-card:hover { box-shadow: 0 6px 20px rgba(6,20,46,.1); transform: translateY(-2px); } .p-pairs-card__img { width: 100%; height: 180px; object-fit: cover; display: block; } .p-pairs-card__body { padding: 1.15rem 1.25rem 1.35rem; text-align: center; } .p-pairs-card__title { font-size: 16px; font-weight: 700; color: var(–txt); margin: 0 0 .3rem; line-height: 1.3; } .p-pairs-card__desc { font-size: 15px; color: var(–txt-lt); margin: 0; line-height: 1.45; } @media (max-width: 640px) { .p-pairs-card { max-width: 100%; } } /* ===== USA bar ===== */ .p-usa { display: flex; align-items: center; justify-content: center; gap: 1.5rem; background: var(–navy); border-radius: var(–radius); padding: 1.25rem 1.75rem; margin: 4rem 0; color: #fff; text-align: center; } .p-usa__flag { width: 6rem; height: 6rem; object-fit: cover; border-radius: 8px; flex-shrink: 0; } .p-usa__h { font-size: 16px; font-weight: 700; margin: 0 0 .2rem; } .p-usa__text { margin: 0; font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.5; } /* ===== Disclaimer ===== */ .p-disclaimer { margin: 2.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(–border); font-size: 16px; line-height: 1.55; color: var(–txt-lt); font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; text-align: left; }
Plug & Play UV-C LED
Kill 99.99% of Bacteria & Viruses — Without Chemicals
Your RO system removes sediment, chlorine, and heavy metals. But bacteria, viruses, and cysts can still pass through. The Pulsar UV uses ultraviolet light to destroy their DNA on contact — giving you hospital-grade disinfection at the tap, with zero chemicals added to your water.
💧2 GPMFlow Rate 💡24 moLED Life ⚡2.5 WPower Draw 🚫0Mercury 🪶2 lbsWeight
Why homeowners choose UV protection:
🛡️
Peace of mind
Especially if you’re on well water, have immune-compromised family members, or want an extra layer of safety for kids and aging parents.
💧
No taste, no byproducts
Unlike chlorine or iodine, UV leaves nothing behind. Just pure, clean, and refreshing disinfected water.
🗓️
Set it and forget it
The Pulsar runs 24 months before you even think about replacing the LED. No annual lamp changes. No quartz sleeves to clean or crack.
Built Different — With Advanced LED Technology
The Pulsar replaces old-school mercury UV lamps with a modern, cool-running LED that’s safer, smarter, and more efficient.
💡 24 Months of LED Life
9,000-hour rated LED. One replacement every 2 years — not every 9–12 months like traditional UV lamps.
⚡ Ultra Efficient — Just 2.5 Watts
Less power than a night light. No standby heat. No wasted energy.
❄️ No Hot-Water Shot
Traditional UV lamps heat the water sitting in the line — giving you a burst of warm water at the tap (and potential leak risk when you’re away). The Pulsar stays cool, so every pour is refreshing and safe.
🧪 Self-Cleaning Flow Design
Most UV systems trap minerals and sediment on the UV lens. The Pulsar pulls particles away from the light source, so your UV stays cleaner longer.
🚫 Zero Mercury
No hazardous materials. No special disposal. Safer for your family and the planet.
🪟 No Quartz Sleeve to Scale or Crack
Most UV systems use a fragile quartz tube that minerals coat over time, blocking UV rays and forcing early replacement. The Pulsar uses a no-fouling window instead — nothing to scale, nothing to crack, nothing to replace annually.
📐 Compact Design — Fits Anywhere
3.5″ × 2″ × 3.65″ with ¼″ quick-connects. Installs beside any RO system, under any sink, or inside any RV.
LED UV vs. Traditional UV — Side by Side
| Feature | Pulsar LED UV | Traditional UV |
|---|---|---|
| LED / Lamp Life | 9,000 hrs (24 months) | 9–12 months |
| Replacement Cost | $0 for 24 months | $80–$120 / year |
| Mercury | None | Contains mercury |
| Heats Water | No — cool operation | Yes — hot-water shot risk |
| Flow Chamber Design | Gravity-assisted box — resists fouling | Narrow tube — traps minerals on lens |
| Quartz Sleeve | None — no-fouling window | Required; scales & cracks |
| Power Draw | 2.5 W | 15–40 W continuous |
The Math: Pay Once, Disinfect for 24 Months
Traditional UV owners spend $80–$120 every year on replacement lamps and sleeves. Over 2 years, that’s $160–$240 in maintenance alone — plus the hassle of annual replacements.
Traditional UV · 2-Year Cost $160 – $240+ Annual lamp + sleeve replacements Pulsar LED UV · 24-Month Cost $0 Zero replacement parts for 24 months. LED assembly replaceable at 24 months for continued disinfection.
Technical Specifications
| Flow Rate | 2 GPM |
|---|---|
| Connections | ¼″ Quick-Connect |
| Power | 2.5 W (85–240 VAC) |
| Dimensions | 3.5″ × 2″ × 3.65″ |
| Max Pressure | 100 PSI |
| Weight | 2 lbs |
| LED Life | 9,000 hrs (24 months) |
Replacement LED assembly available
Pairs Perfectly
Great Addition To
American Made RO
Add a final layer of UV-C protection after your reverse osmosis system.
RV or Mobile Home
Compact, low-power design fits tight spaces and runs on any standard outlet.
Drinking Fountain & Dispenser
Clean, safe water at every tap — ideal for water coolers and dispensers.
Refrigerator Supply Line
¼″ quick-connects tie directly into your refrigerator’s water and ice supply.
Designed & Built in the USA
Engineered, assembled, and supported by US Water Systems — American quality backed by a team that picks up the phone.
For optimal performance, the incoming water for this UV system must be clear of sediment, scale, and high mineral content to ensure the ultraviolet light effectively reaches all microorganisms. If your home is supplied by a private well, you must have your water professionally tested before installation to confirm it meets the required quality standards. In cases where iron, hardness, or turbidity exceed these limits, proper pre-filtration is required to prevent voiding the warranty.
Explore more from our collection.





Reviews
There are no reviews yet.