import React, { useState, useEffect, Suspense } from 'react'; import { ShieldCheck, Zap, Target, BarChart3, Camera, UploadCloud, CheckCircle2, ArrowRight, Menu, X, Phone, Mail, Database, Lock, Clock, ShieldAlert, GraduationCap, Scale, Activity, Server, FileSearch, Share2, HardDrive, FileText, TrendingUp, Layout, Award, Loader2, ChevronRight, Search, ClipboardCheck } from 'lucide-react'; /** * NSR STRATEGIC DESK - REFACTORED OPERATIONAL PLATFORM v1.4 * SINGLE-FILE MODULAR ARCHITECTURE */ // --- 1. REUSABLE UI PRIMITIVES (Design System) --- const Container = ({ children, className = "" }) => (
{children}
); const SectionHeader = ({ badge, title, subtitle, centered = false }) => (
{badge && ( {badge} )}

{title}

{subtitle && (

{subtitle}

)}
); const Card = ({ children, className = "", hover = true, accent = false }) => (
{children}
); const Button = ({ children, variant = 'primary', className = "", ...props }) => { const variants = { primary: "bg-emerald-500 text-slate-950 hover:bg-emerald-400 shadow-emerald-500/20", secondary: "border border-slate-700 text-white hover:bg-slate-800", outline: "border border-emerald-500/30 text-emerald-500 hover:bg-emerald-500/10", }; return ( ); }; // --- 2. PAGE COMPONENTS --- const HomePage = ({ onNavigate }) => (
Outsourced FNOL &
Claim File Preparation.} subtitle="NSR provides a high-integrity front-end for insurers and MGAs. We don't just take messages; we deliver adjuster-ready files with 65-point documentation accuracy." />
{/* Capacity & Workflow Snapshot */}

Institutional
Capacity

Scaleable FNOL infrastructure designed for mid-market carriers and high-volume MGAs.

Current Base 150 FNOL / Day
Availability 24/7/365 Duty Desk

The 65-Point Standard

Every intake follows a rigid data-collection protocol used by top-tier carriers to ensure subrogation and liability triggers are caught instantly.

CMS Native Entry

Direct logging into Guidewire, FileTrac, or Snapsheet. No administrative cleanup required by your internal adjusting staff.

); const ServicesPage = () => (
{[ { title: 'FNOL Intake', icon: Activity, desc: 'High-detail reporting covering fact patterns, injury status, and point of impact.' }, { title: 'File Preparation', icon: FileText, desc: 'Converting raw data into structured PDF summaries or direct system entries.' }, { title: 'Evidence Capture', icon: Camera, desc: 'Secure portal links for instant collection of scene photos and police reports.' }, { title: 'Document Indexing', icon: Database, desc: 'Labeling and sorting of all files per your specific carrier standards.' }, { title: 'IA Dispatching', icon: TrendingUp, desc: 'Coordination and follow-up with your preferred field adjusting vendors.' }, { title: 'CMS Data Entry', icon: Zap, desc: 'Real-time entry into your proprietary or industry-standard claims platform.' } ].map((s, i) => (

{s.title}

{s.desc}

))}
); const TechnologyPage = () => { const [demoState, setDemoState] = useState('idle'); const runDemo = () => { setDemoState('loading'); setTimeout(() => setDemoState('done'), 1500); }; return (
{[ { icon: Lock, t: 'AES-256 Bit Isolation', d: 'Data encrypted at rest and in transit.' }, { icon: Server, t: 'Google Workspace Stack', d: 'SOC2-aligned North American data residency.' }, { icon: Search, t: 'Metadata Indexing', d: 'Automatic scrub and label for every asset.' } ].map((item, i) => (

{item.t}

{item.d}

))}

STRATEGIC DESK

Evidence Portal v2.4

{demoState === 'idle' && (
Awaiting Evidence
)} {demoState === 'loading' && (

Encrypting & Indexing...

)} {demoState === 'done' && (

Indexed & Delivered

)}

Secure Operational Link

); }; const CompliancePage = () => (
{/* NSR Operational Trust Seal */}

The NSR Governance Standard

Verification: Carrier-Grade Quality Control

65-Point Data Audit
AES-256 Storage
PIPEDA Privacy Verified
Admin Audit Logging

Data Privacy & Security

  • PIPEDA-Compliant Data Handling
  • AES-256 Encryption In Transit & At Rest
  • Controlled Access & Admin Audit Logs
  • North American Residency (Google Workspace)

Compliance Architecture

  • SOC2-Compliant Cloud Infrastructure
  • Custom Data Retention per Carrier
  • 24/7/365 Secure Operations & Oversight
  • Google Workspace Security Protocol
); const PricingPage = () => (
{[ { name: 'Small Fleet', base: '150', fee: '75', cap: '5-20 claims /mo', features: ['24/7 Hotline Coverage', 'Evidence Link Delivery', 'Email Summary PDF', 'Manual Intake Desk'] }, { name: 'Regional MGA', base: '450', fee: '55', cap: '30-80 claims /mo', features: ['Direct CMS Integration', 'Liability Mapping', 'Branded Greeting', 'Operations Audit'], accent: true }, { name: 'Carrier Pilot', base: 'Custom', fee: 'Scale', cap: '100+ claims /mo', features: ['Dedicated Team', 'Custom Governance', 'IA Dispatching', 'API Integration'] } ].map((t, i) => (

{t.name}

{t.cap}

${t.base} {t.base !== 'Custom' && /mo base}
${t.fee} per FNOL intake
    {t.features.map((f, idx) => (
  • {f}
  • ))}
))}
); const ContactPage = () => { const [formState, setFormState] = useState('idle'); // idle, sending, success const handleSubmit = (e) => { e.preventDefault(); setFormState('sending'); setTimeout(() => setFormState('success'), 1500); }; if (formState === 'success') { return (

Inquiry Logged

Our operations desk will reach out within 2 business hours.

); } return (
); }; const AboutPage = () => (

NSR was founded to bridge a persistent gap in the insurance lifecycle: the erosion of documentation quality in outsourced intake.

While major BPOs compete on low-cost labor, we compete on Documentation Discipline. Every intake is governed by a 65-point standard that ensures subrogation opportunities and liability indicators are identified during the very first notice.

150+

Daily Capacity

24/7

Duty Desk

CMS

Integrated

AES

Secured Stack

); // --- 3. MAIN APP ORCHESTRATOR --- const App = () => { const [activePage, setActivePage] = useState('home'); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); const [isScrolled, setIsScrolled] = useState(false); useEffect(() => { const handleScroll = () => setIsScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const navigateTo = (id) => { setActivePage(id); setMobileMenuOpen(false); window.scrollTo({ top: 0, behavior: 'smooth' }); }; const navLinks = [ { name: 'Services', id: 'services' }, { name: 'Technology', id: 'tech' }, { name: 'Compliance', id: 'compliance' }, { name: 'Pricing', id: 'pricing' }, { name: 'About', id: 'about' } ]; return (
{/* NAVIGATION */} {/* MOBILE OVERLAY */} {mobileMenuOpen && (
{navLinks.map(link => ( ))}
)} {/* RENDER ACTIVE PAGE */} SECURING ASSETS...
}> {activePage === 'home' && } {activePage === 'services' && } {activePage === 'tech' && } {activePage === 'compliance' && } {activePage === 'pricing' && } {activePage === 'contact' && } {activePage === 'about' && } {/* FOOTER */}
); }; export default App;