About Us

:::style .nsuf-page, .nsuf-page * { box-sizing: border-box; } .nsuf-page body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--font); background: var(--primary); } .nsuf-page .container { width: 100%; max-width: 100%; padding-left: 15px; padding-right: 15px; margin-left: 0; margin-right: 0; } /* ---------- Hero ---------- */ .hero { background: linear-gradient(135deg, #15345B, #07519E 60%, #4A95D0); color: #fff; padding: 5.5rem 0 5rem; position: relative; overflow: hidden; } .hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 55%); pointer-events: none; z-index: 0; } .hero > .container { position: relative; z-index: 1; } /* FIX #1: hero H1/H2 forced white, matching #page-content's specificity + !important */ .hero h1.hero-heading { font-weight: 800; color: #ffffff !important; } .hero h2.hero-heading { font-weight: 800; color: #ffffff !important; } #page-content .hero h1, #page-content .hero h2, .hero h1, .hero h2 { color: #ffffff !important; } .hero .lead { font-size: 1.15rem; max-width: 700px; color: rgba(255,255,255,0.92); } .btn-hero-light { background: #fff; color: #15345B; font-weight: 600; border: none; padding: 0.65rem 1.5rem; border-radius: 8px; transition: transform 0.15s ease, box-shadow 0.15s ease; } .btn-hero-light:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); color: #15345B; } .btn-hero-outline { border: 2px solid rgba(255,255,255,0.7); color: #fff; font-weight: 600; padding: 0.6rem 1.4rem; border-radius: 8px; transition: all 0.15s ease; background: transparent; } .btn-hero-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; } /* ---------- Stat bar ---------- */ .stat-bar { background: var(--primary); border: 1px solid var(--card-border); width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; } .stat-box { text-align: center; padding: 1.25rem 0.5rem; } .stat-number { font-size: 2.5rem; font-weight: 800; color: #07519E; line-height: 1; } @media (prefers-color-scheme: dark) { .stat-number { color: #4A95D0; } } .stat-label { color: var(--font); opacity: 0.75; font-weight: 500; margin-top: 0.5rem; font-size: 0.95rem; } .stat-box.border-end { border-color: var(--card-border) !important; } /* ---------- Sections ---------- */ section { padding: 4.5rem 0; } .bg-alt { background: var(--secondary); } .section-divider { max-width: 60px; height: 4px; background: linear-gradient(90deg, #07519E, #4A95D0); border-radius: 2px; margin: 1rem 0 1.5rem; } .text-secondary-themed { color: var(--font); opacity: 0.85; } /* ---------- Cards ---------- */ .section-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #07519E, #4A95D0); color: #fff; font-size: 1.6rem; flex-shrink: 0; box-shadow: 0 6px 16px rgba(7, 81, 158, 0.25); line-height: 1; overflow: hidden; } /* FIX #3: icons forced white with multiple selector strengths as fallback */ .section-icon i, .section-icon svg { display: block; line-height: 1; margin: 0 !important; padding: 0 !important; color: #ffffff !important; } .section-icon p, .section-icon p i, div.section-icon i.fa, div.section-icon i[class*="fa-"] { color: #ffffff !important; } .section-icon p { margin: 0 !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; height: 100%; width: 100%; } .content-card { background: var(--primary); border-radius: 16px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(20, 30, 50, 0.06); border: 1px solid var(--card-border); transition: box-shadow 0.2s ease, transform 0.2s ease; height: 100%; width: 100%; max-width: 100%; } .content-card:hover { box-shadow: 0 10px 30px rgba(20, 30, 50, 0.12); transform: translateY(-3px); } .content-card h3 { color: var(--font); } /* ---------- Link buttons (theme-aware, brand-colored) ---------- */ .link-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #07519E; color: #fff !important; font-weight: 600; font-size: 0.9rem; padding: 0.55rem 1.25rem; border-radius: 8px; text-decoration: none !important; transition: background 0.15s ease, transform 0.15s ease; } .link-btn:hover { background: #15345B; color: #fff !important; transform: translateX(2px); } .link-btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #07519E !important; font-weight: 600; font-size: 0.9rem; padding: 0.5rem 1.2rem; border-radius: 8px; border: 1.5px solid #07519E; text-decoration: none !important; transition: all 0.15s ease; } /* FIX #2: hover state forced with tag+class selector + !important on both properties */ .link-btn-outline:hover { background: #07519E; color: #fff !important; } a.link-btn-outline:hover, a.link-btn-outline:focus, a.link-btn-outline:active, #page-content a.link-btn-outline:hover, #page-content a.link-btn-outline:focus, #page-content a.link-btn-outline:active, #page-content a.btn.link-btn-outline:hover, #page-content a.btn.link-btn-outline:focus, #page-content a.link-btn-outline.link-btn-outline:hover, #page-content a.link-btn-outline.link-btn-outline:focus, #page-content a.link-btn-outline.link-btn-outline:active { background: #07519E !important; background-color: #07519E !important; background-image: none !important; color: #ffffff !important; border-color: #07519E !important; } @media (prefers-color-scheme: dark) { .link-btn-outline { color: #4A95D0 !important; border-color: #4A95D0; } a.link-btn-outline:hover, a.link-btn-outline:focus, a.link-btn-outline:active { background-color: #4A95D0 !important; border-color: #4A95D0 !important; color: #ffffff !important; } } /* ---------- Publications ---------- */ .pub-list a { color: var(--link); text-decoration: none !important; font-weight: 500; display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--card-border); transition: color 0.15s ease, padding-left 0.15s ease; } .pub-list a:hover { color: var(--hover); padding-left: 8px; } .pub-list a i { margin-right: 0.6rem; color: #4A95D0; } .webinar-badge { background: var(--well); color: var(--font); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; margin-left: 0.5rem; } /* ---------- Contact ---------- */ .contact-card { background: linear-gradient(135deg, #15345B, #07519E); color: #fff; border-radius: 16px; padding: 2.5rem 1.5rem; width: 100%; max-width: 100%; } /* FIX #4 and #5: contact card heading + paragraph text forced white */ #page-content .contact-card h1, #page-content .contact-card h2, #page-content .contact-card h3, .contact-card h1, .contact-card h2, .contact-card h3 { color: #ffffff !important; } .dynamic-content .contact-card p, .contact-card p { color: #ffffff !important; } .contact-card a.email-btn { display: inline-block; background: #DB792C; color: #fff !important; font-weight: 600; padding: 0.6rem 1.75rem; border-radius: 6px; text-decoration: none !important; transition: background 0.15s ease, transform 0.15s ease; } .contact-card a.email-btn:hover { background: #D89328; color: #fff !important; transform: translateY(-1px); } footer.site-footer { background: #15345B; color: rgba(255,255,255,0.8); } ::: :::div:nsuf-page :::div:hero :::div:container # Pairing the Best Minds ## with the Needed Capability :::p:lead mb-4 The Nuclear Science User Facilities offers unparalleled research opportunities for nuclear energy researchers — at no cost to you. ::: :::div:d-flex gap-3 flex-wrap [:fa-solid:Explore Capabilities](/Home/Capabilities){btn btn-primary} [Contact Us](mailto:nsuf@inl.gov){btn btn-primary} ::: ::: ::: :::div:container :::div.e1 :::div:col-6 col-md-3 stat-box border-end :::div:stat-number :::p.e2 70+ ::: ::: :::div:stat-label User Facilities ::: ::: :::div:col-6 col-md-3 stat-box border-end :::div:stat-number :::p.e3 21 ::: ::: :::div:stat-label Partner Institutions ::: ::: :::div:col-6 col-md-3 stat-box border-end :::div:stat-number :::p.e4 619 ::: ::: :::div:stat-label Research Capabilities ::: ::: :::div:col-6 col-md-3 stat-box :::div:stat-number $0 ::: :::div:stat-label Cost to Researchers ::: ::: ::: ::: :::div:container :::div:row justify-content-center :::div:col-lg-9 pt-3 ## Accessing NSUF Facilities :::div:section-divider ::: :::p:fs-5 text-secondary-themed Access is awarded through two competitive peer-reviewed processes: **Consolidated Innovative Nuclear Research (CINR) **and the **Rapid Turnaround Experiment (RTE)**. NSUF staff is available to help any researcher who desires to submit a proposal. ::: :::p:fs-6 text-secondary-themed Submitted proposals should be consistent with the DOE-NE mission and its programmatic interests, including light water reactor sustainability, fuel cycle research and development, advanced modeling and simulation, and advanced reactor technology programs. All NSUF research must be non-proprietary, and results are expected to be published. ::: :::div:d-flex flex-wrap gap-2 mt-3 [CINR Program:fa-solid:](https://nsuf.inl.gov/cinr){link-btn-outline} [RTE Program:fa-solid:](https://nsuf.inl.gov/rte){link-btn-outline} [DOE-NE Mission:fa-solid:](https://www.energy.gov/ne/about-us){link-btn-outline ^} ::: :::p:mt-4 text-secondary-themed Questions? Reach out at [nsuf@inl.gov](mailto:nsuf@inl.gov){fw-semibold text-cherenkov} ::: ::: ::: ::: :::section.e5 :::div:container :::div:text-center mb-5 ## What We Offer :::div:section-divider mx-auto ::: ::: :::div:row g-3 :::div:col-md-6 :::div:content-card :::div:d-flex gap-3 mb-3 :::div:section-icon :fa-industry: ::: ### Facilities :::p:text-secondary-themed mb-0 71 user facilities at 21 partner institutions around the country and one international affiliate. ::: ::: :::p:text-secondary-themed World-class facilities available to researchers at no cost, with capabilities ranging from neutron, gamma, and ion irradiation to post-irradiation examination. ::: [Learn More:fa-solid:](/Home/PartnerInstitutions){link-btn} ::: ::: :::div:col-md-6 :::div:content-card :::div:d-flex gap-3 mb-3 :::div:section-icon :fa-flask: ::: ### Nuclear Materials & Fuels Library :::p:text-secondary-themed mb-0 A collection of specialized information and material specimens from irradiation test campaigns. ::: ::: :::p:text-secondary-themed Includes real-world components retrieved from decommissioned power reactors and donations from other sources — available via peer review or direct programmatic request. ::: :::div:d-flex flex-wrap gap-2 [Learn More:fa-solid:](/Library){link-btn} [View Policy](/File/FY25%20NFML%20Policy.pdf){link-btn-outline ^} ::: ::: ::: :::div:col-md-6 :::div:content-card :::div:d-flex gap-3 mb-3 :::div:section-icon :fa-radiation: ::: ### Projects :::p:text-secondary-themed mb-0 Research supporting Department of Energy-Office of Nuclear Energy (DOE-NE) missions. ::: ::: :::p:text-secondary-themed Most research addresses either the mechanisms of radiation on materials and fuels for the aging current reactor fleet, or materials and fuels for the next generation. ::: [Learn More:fa-solid:](/Home/Projects){link-btn} ::: ::: :::div:col-md-6 :::div:content-card :::div:d-flex gap-3 mb-3 :::div:section-icon :fa-users: ::: ### Users Organization :::p:text-secondary-themed mb-0 Open membership for all users and potential users of NSUF facilities. ::: ::: :::p:text-secondary-themed Also open to scientists and engineers engaged in the operation and development of these facilities. Contact the executive committee to get involved. ::: :::div:d-flex flex-wrap gap-2 [Learn More:fa-solid:](/nsuo){link-btn ^} [Email Committee](mailto:nsufusersorganization@gmail.com){link-btn-outline} ::: ::: ::: ::: ::: ::: :::section.e6 :::div:container :::div:contact-card text-center ## Contact Us :::p:fs-5 mb-4 Please contact the NSUF by email or find the NSUF employee you would like to contact. ::: :::p:mb-4 [nsuf@inl.gov](mailto:nsuf@inl.gov){btn btn-warning} ::: :::div:d-flex justify-content-center gap-3 flex-wrap [View All Program Office Contacts](https://nsuf.inl.gov/Home/Staff){btn btn-warning ^} [View All Technical Leads](https://nsuf.inl.gov/Home/PartnerInstitutions){btn btn-warning ^} ::: ::: ::: ::: ::: :::script $(function () { $.getJSON('/Home/DashboardStats', function (data) { $('#stat-facilities').text(data.UserFacilities); $('#stat-institutions').text(data.PartnerInstitutions); $('#stat-capabilities').text(data.ResearchCapabilities); }); }); ::: :::mda .e1{ class: 'row g-0 shadow-sm rounded-4 overflow-hidden stat-bar'; style: 'margin-top: -2.5rem; position: relative; z-index: 2;'; } .e2{ id: stat-facilities; } .e3{ id: stat-institutions; } .e4{ id: stat-capabilities; } .e5{ class: bg-alt; id: facilities; } .e6{ class: bg-alt; id: contact; } :::