diff --git a/public/css/style.css b/public/css/style.css index 7b77600..cdca900 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -10,27 +10,35 @@ --shadow: 0 10px 30px rgba(0,0,0,0.08); } *{box-sizing:border-box}html,body{margin:0;padding:0} -body{font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:var(--text);background:var(--bg);line-height:1.6} +body{font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;color:var(--text);background:var(--bg);line-height:1.6;overflow-x:hidden} a{text-decoration:none;color:inherit}img{max-width:100%;display:block} .container{width:min(1200px,calc(100% - 2rem));margin-inline:auto}.section{padding:4.5rem 0}.section-alt{background:var(--bg-alt)} -.site-header{position:sticky;top:0;z-index:999;background:#fff;border-bottom:1px solid var(--border)} +.site-header{position:sticky;top:0;z-index:999;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:1px solid var(--border)} .nav-wrap{display:flex;align-items:center;justify-content:space-between;min-height:76px;gap:1rem} .brand{display:inline-flex;align-items:center;gap:.65rem;font-weight:700}.brand img{width:44px;height:44px;object-fit:contain} -.site-nav{display:flex;align-items:center;gap:.9rem}.site-nav a{color:var(--muted);font-weight:500}.site-nav a.active,.site-nav a:hover{color:var(--accent)} +.site-nav{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap;justify-content:flex-end}.site-nav a{color:var(--muted);font-weight:500}.site-nav a.active,.site-nav a:hover{color:var(--accent)} .mobile-toggle{display:none;border:0;background:transparent}.mobile-toggle span{display:block;width:22px;height:2px;background:#222;margin:5px 0} .hero{padding:6rem 0 3.5rem;position:relative;overflow:clip} .hero-bg{position:absolute;inset:0;background:radial-gradient(700px 350px at 70% -30%,rgba(209,32,32,.12),transparent),radial-gradient(500px 280px at 20% 0%,rgba(220,0,0,.08),transparent)} +.hero-orb{position:absolute;border-radius:50%;filter:blur(2px);opacity:.35;pointer-events:none;animation:drift 10s ease-in-out infinite alternate} +.hero-orb-1{width:260px;height:260px;right:-70px;top:60px;background:radial-gradient(circle at 30% 30%,#ff6a6a,#d12020)} +.hero-orb-2{width:180px;height:180px;left:-60px;bottom:20px;background:radial-gradient(circle at 30% 30%,#ffb2b2,#dc0000);animation-duration:14s} +@keyframes drift{from{transform:translateY(-8px)}to{transform:translateY(14px)}} + .hero-grid{position:relative;display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center} .eyebrow{color:var(--accent);font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em} h1{font-size:clamp(2.2rem,5vw,4rem);line-height:1.1;margin:.25rem 0 .75rem}h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-top:0} .lead{color:var(--muted);font-size:1.08rem}.hero-actions{display:flex;gap:.8rem;margin-top:1.2rem;flex-wrap:wrap} -.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.1rem;border-radius:999px;border:1px solid transparent;font-weight:600} -.btn-primary{background:var(--accent);color:#fff}.btn-ghost{border-color:#ccc;background:#fff}.btn-ghost:hover{border-color:var(--accent);color:var(--accent)} +.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.1rem;border-radius:999px;border:1px solid transparent;font-weight:600;transition:.25s ease} +.btn-primary{background:var(--accent);color:#fff}.btn-primary:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(209,32,32,.3)} +.btn-ghost{border-color:#ccc;background:#fff}.btn-ghost:hover{border-color:var(--accent);color:var(--accent)} -.glass-card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:1.2rem;box-shadow:var(--shadow)} +.glass-card{background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.98));border:1px solid var(--border);border-radius:18px;padding:1.2rem;box-shadow:var(--shadow);transition:transform .25s ease, box-shadow .25s ease} +.glass-card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(0,0,0,.11)} .media-card{padding:.75rem}.media-card img{border-radius:12px;width:100%;object-fit:cover} +.video-frame{padding:.5rem}.video-frame iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:12px} .grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.2rem}.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem} .split{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem;align-items:center}.page-hero{padding:5rem 0 1.5rem} @@ -39,8 +47,8 @@ h1{font-size:clamp(2.2rem,5vw,4rem);line-height:1.1;margin:.25rem 0 .75rem}h2{fo .cta-card{text-align:center}.text-link{color:var(--accent);font-weight:600} .gallery-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.8rem}.gallery-grid img{border-radius:12px;min-height:150px;object-fit:cover;border:1px solid var(--border)} -.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.team-card img{border-radius:12px;margin-bottom:.7rem;height:220px;width:100%;object-fit:cover} -.profile-card{max-width:760px}.profile-card img{width:180px;height:180px;border-radius:50%;object-fit:cover;margin-bottom:1rem} +.team-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.team-card img{border-radius:12px;margin-bottom:.7rem;height:260px;width:100%;object-fit:cover} +.profile-card{max-width:820px}.profile-card img{width:220px;height:220px;border-radius:24px;object-fit:cover;margin-bottom:1rem} .timeline{display:grid;gap:1rem}.news-card .date,.date{color:#a61c1c;font-weight:700;font-size:.9rem} .quote-card p{font-size:1.05rem} @@ -53,4 +61,12 @@ h1{font-size:clamp(2.2rem,5vw,4rem);line-height:1.1;margin:.25rem 0 .75rem}h2{fo .footer-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:1.2rem}.footer-links{list-style:none;padding:0;margin:0}.footer-links li{margin:.5rem 0;color:#bdbdbd} .footer-bottom{padding:1.25rem 0 1.8rem;color:#bdbdbd}.legal{color:#bdbdbd} -@media (max-width:980px){.hero-grid,.split,.grid-3,.grid-2,.footer-grid,.form-grid,.gallery-grid,.team-grid,.stats-grid{grid-template-columns:1fr}.mobile-toggle{display:inline-block}.site-nav{position:absolute;top:76px;right:1rem;left:1rem;background:#fff;border:1px solid var(--border);border-radius:14px;padding:.9rem;flex-direction:column;align-items:stretch;transform-origin:top;transform:scaleY(0);opacity:0;pointer-events:none}.site-nav.open{transform:scaleY(1);opacity:1;pointer-events:auto}} +.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease} +.reveal.is-visible{opacity:1;transform:translateY(0)} + +@media (max-width:980px){ + .hero-grid,.split,.grid-3,.grid-2,.footer-grid,.form-grid,.gallery-grid,.team-grid,.stats-grid{grid-template-columns:1fr} + .mobile-toggle{display:inline-block} + .site-nav{position:absolute;top:76px;right:1rem;left:1rem;background:#fff;border:1px solid var(--border);border-radius:14px;padding:.9rem;flex-direction:column;align-items:stretch;transform-origin:top;transform:scaleY(0);opacity:0;pointer-events:none} + .site-nav.open{transform:scaleY(1);opacity:1;pointer-events:auto} +} diff --git a/public/js/main.js b/public/js/main.js index 33ee250..81d4daa 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -17,6 +17,35 @@ }); } + const reveals = document.querySelectorAll('[data-reveal]'); + if ('IntersectionObserver' in window && reveals.length) { + const observer = new IntersectionObserver((entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + entry.target.classList.add('is-visible'); + observer.unobserve(entry.target); + } + }); + }, { threshold: 0.12 }); + + reveals.forEach((el) => observer.observe(el)); + } else { + reveals.forEach((el) => el.classList.add('is-visible')); + } + + const parallaxEls = document.querySelectorAll('[data-parallax]'); + if (parallaxEls.length) { + const onScroll = () => { + const y = window.scrollY || 0; + parallaxEls.forEach((el) => { + const speed = Number(el.getAttribute('data-parallax')) || 0; + el.style.transform = `translateY(${y * speed}px)`; + }); + }; + onScroll(); + window.addEventListener('scroll', onScroll, { passive: true }); + } + const contactForm = document.getElementById('contactForm'); const status = document.getElementById('formStatus'); const endpoint = 'https://api.corben.world/forms/af90392e-9399-4778-9b80-9eed83580f1d/submit'; diff --git a/site.config.js b/site.config.js index d8cac65..fb079dc 100644 --- a/site.config.js +++ b/site.config.js @@ -5,7 +5,7 @@ module.exports = { tagline: 'Empowering anyone to stop the bleed with audio instructions and one-button activation.' }, contact: { - phoneDisplay: '+1 561-325-8758', + phoneDisplay: '(561) 325-8758', phoneHref: 'tel:+15613258758', email: 'info@theautotq.com', addressLine1: '6590 W Rogers Circle Suite 5', @@ -17,10 +17,15 @@ module.exports = { hero: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/3c6ce407-2505-4d5c-9fb9-fa29c51b490e/image.webp', product: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/00f3e56b-8bc6-4bef-893c-03aa2e545a04/image.webp', videoThumb: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/a5558c8e-49d6-4057-8afe-0955b884e624/image.jpg', - hannah: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/a717ce52-0cf3-4c27-9acc-5c64a4a062af/image.webp', - team2: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/52ff9890-bf70-4e83-af9b-95618602b1e1/image.webp', - team3: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/4c097122-4779-4016-a93b-74ac6812e596/image.webp', - team4: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/80eaa398-3bef-4685-88ae-67f22a89b217/image.webp', + hannah: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/a5ac4452-2d20-462a-b00d-f3ab68c8e48d/Hannah Herbst - Chief Executive Officer Headshot.webp', + laresa: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/7eb7cb9c-09be-4d6a-834c-b1d6f8c4463b/Laresa McIntyre - Chief Financial Officer Fractional Headshot.webp', + jamie: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/92faf8b4-e0a2-4bf8-899e-698f8947325a/Jamie Saltzman - VP of Commercial Strategy Fractional Headshot.webp', + gabriella: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/1bfcd77e-40ed-4d1b-afc0-56f1639381ec/Gabriella Martinez Brito - Operations and Administrative Coordinator Headshot.webp', + devin: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/950056bc-ca53-4dae-893a-b123ef8116c2/Devin Willis - Engineering Director Fractional Headshot.webp', + nandini: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/6b2c82bc-98b0-437e-adfc-a70ff338e704/Nandini Murthy - Quality Consultant Headshot.webp', + max: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/1b823bfd-442f-44fa-aa67-3415fefd37dc/Max Herbst - Logistics Coordinator Headshot.webp', + nick: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/3b70612c-8966-4b0d-aec4-c78b63577ac6/Nicholas Liautaud Nick - Mechanical Engineer Fractional Headshot.webp', + carisse: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/58d7c24d-921d-4fe7-9264-e5e4a458de35/Carisse Joseph - Social Media Manager Fractional Headshot.webp', company1: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/34789e8a-b10a-4c32-88c5-f1ee6e958fff/image.webp', company2: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/e1722340-8143-42fd-8289-afa1cf021f36/image.webp', company3: 'https://nyc3.digitaloceanspaces.com/corben-sites/images/c23ea202-5442-41b4-9a1b-1586e81c50eb/e7242e21-25b3-4c5b-974d-211fec1deeda/image.webp', @@ -31,46 +36,72 @@ module.exports = { } }, literature: [ + { title: 'AutoTQ Booklet', url: 'https://api.corben.world/files/4339bcaa-c812-42fa-9bfa-cb16b81d0a37/public' }, + { title: 'Final IFU', url: 'https://api.corben.world/files/406fd06f-f579-4184-b373-e986d26e95a2/public' }, + { title: 'AutoTQ Flyer', url: 'https://api.corben.world/files/9ac9eb68-5886-4cb7-8c74-8d1613c2ee6f/public' }, + { title: 'OSHA Whitepaper', url: 'https://api.corben.world/files/e8d2b880-6353-4357-9a9e-d294f48f0f36/public' }, + { title: 'Relevant Industries Overview', url: 'https://api.corben.world/files/3694600d-f194-4651-9c73-ec947575ac25/public' } + ], + videos: [ { - title: 'AutoTQ Booklet', - url: 'https://api.corben.world/files/f1aa8c2f-f815-4db7-883c-223ab4bda43d/public' - }, - { - title: 'Final IFU', - url: 'https://api.corben.world/files/f149787a-90fe-41f9-8650-6351a8b54be2/public' + title: 'Cape Coral Police Department Deploys AutoTQ', + embedUrl: 'https://www.youtube.com/embed/UlaoT7LDwAw', + pageUrl: 'https://theautotq.com/capecoral' } ], team: [ - { name: 'Hannah Herbst', slug: 'hannah', role: "Chief Executive Officer", bio: "Hannah Herbst is a Forbes 30 Under 30 inventor who has been recognized internationally for innovation. She developed an antibacterial, biomimetic wound dressing inspired by shark skin’s micropattern in FAU’s Biomechanics and Microbiology laboratories. For this work she won First Place and Best in Category in Translational Medical Science at the International Science and Engineering Fair in 2019. She further developed a chemical sensor for identifying airborne chemicals, and an ocean energy collection and conversion device for underdeveloped nations. She has presented her research at the White House to former POTUS, was named America’s Top Young Scientist by 3M and Discovery Education, and has been featured in Mashable, Business Insider, and more. Hannah was a Division 1 Track and Field Athlete, and she holds a B.S. in Management Information Systems with a concentration in Business Analytics from Florida Atlantic University and a certificate in Business and Innovation from Stanford University.", image: 'hannah' }, - { name: 'Laresa McIntyre', slug: 'laresa', role: "Chief Financial Officer (Fractional)", bio: "Laresa McIntyre is a seasoned financial leader who helps high-growth companies build strong, scalable foundations. She has spent her career guiding complex organizations through expansion, leading finance, forecasting, and operational planning with a clear, insight-driven approach. As CFO, she brings deep experience in creating financial clarity, shaping data-backed strategy, and building systems that support sustainable growth. Laresa has managed multimillion-dollar P&Ls across multiple geographies and is known for translating complex financial data into practical, founder-friendly decisions. She holds an MBA, a Master’s in Accounting, and is a Certified Management Accountant (CMA).", image: 'team2' }, - { name: 'Jamie Saltzman', slug: 'jamie', role: "VP of Commercial Strategy (Fractional)", bio: "James “Jamie” Saltzman is an accomplished sales leader with more than two decades of success expanding market share and scaling sales organizations in the medical device and public safety industries. Jamie previously spent 27 years at ZOLL Medical, where he advanced from Customer Service Representative to Group Vice President overseeing Public Safety and Healthcare. His career spans strategic sales leadership, complex channel development, and national account growth across high-stakes environments. Jamie is now spearheading national distribution for AutoTQ®—Golden Hour Medical’s patented, FDA-registered automated tourniquet—where he is building a coast-to-coast distributor and manufacturer-rep network to accelerate adoption of lifesaving bleeding-control technology. Known for his analytical approach, relationship-driven leadership, and ability to penetrate competitive markets, Jamie brings unmatched expertise to Golden Hour Medical’s mission of making effective bleeding control accessible to every bystander.", image: 'team3' }, - { name: 'Gabriella Brito', slug: 'gabriella', role: "Operations and Administrative Coordinator", bio: "Gabriella Brito is the Operations and Administrative Coordinator at Golden Hour Medical, where she ensures the organization runs efficiently by managing day-to-day operations and providing critical administrative support. She earned her Bachelor’s Degree in Communication Studies from Florida Atlantic University, with a minor in Leadership and Human Resource Development. Gabriella applies her skills in communication, leadership, and organizational strategy to streamline processes, support teams, and enhance overall workflow. With a passion for building systems that help people and programs succeed, Gabriella is a key part of Golden Hour Medical’s operations, ensuring that the organization functions smoothly behind the scenes.", image: 'team4' }, - { name: 'Devin Willis', slug: 'devin', role: "Engineering Director (Fractional)", bio: "Devin is the Director of Engineering at Golden Hour Medical. He is skilled in electronics, product development, and biology research. He has conducted research at Max Planck Neuroscience Institute and the Institute for Human Health and Disease Prevention. Nationally recognized for his inventions, he has developed RNAPath and RNAScopeCount, innovative platforms for COVID-19 diagnostics; 3DSeq for automated 3D Spatial genomics on tumor biopsies, and SlideMap, a cost-effective cancer pathology and diagnostic deep learning platform. Devin was a Division 1 Track and Field athlete, and is a double major at the University of Florida studying Electrical Engineering and Management.", image: 'team2' }, - { name: 'Nandini Murthy', slug: 'nandini', role: "Quality Consultant", bio: "Ms. Murthy has over 25 years of work experience in regulatory affairs, clinical and quality assurance functions with multiple device specialties. She has authored numerous, successful FDA submissions including a de novo, a modular PMA, a HDE, original PMAs, several original IDEs, pre-Submissions, PMA and IDE Supplements and 510(k)s for novel products including implantable devices, sensor/monitoring tools and diagnostic devices. She has experience with product approvals for the EU (CE Mark) and Canadian markets. She has led projects with complex submissions, where she has both managed a team and where necessary, written or executed on the various document deliverables in a hands-on manner. Ms. Murthy has a successful track record of on-time execution and FDA approvals. In addition to her core expertise in regulatory affairs, Ms. Murthy has designed and executed complex clinical trials and established quality systems to ISO 13485 and FDA Quality System requirements. She has helped early stage and more established larger companies develop their quality systems consistent with their stage of device development. She has experience in developing plans for Quality Systems projects, including tactically prioritizing and directing focus, and updating/communicating plans and status with Management.", image: 'team3' }, - { name: 'Max Herbst', slug: 'max', role: "Logistics Coordinator", bio: "Max Herbst is a motivated operations and logistics professional with a strong foundation in political science and a proven track record of leadership. Currently serving as Product Operations Manager & Logistics Coordinator at Golden Hour Medical, he oversees quality assurance processes, implements inventory management systems, and provides operational insights to executive leadership. Previously, Max recruited physicians for underserved communities at Med Partners Locum Tenens, building lasting partnerships with hospitals across North America. With experience spanning healthcare staffing and hospitality management, he brings adaptability, people skills, and operational expertise. A graduate of Florida Atlantic University (B.A. in Political Science, GPA 3.88), Max has held multiple leadership roles, including Attorney General of Student Government and Co-Founder of the Speech & Debate Club. He is skilled in Excel, Power BI, and financial modeling, and holds a Florida Health & Life Insurance License. Outside of work, Max enjoys running, surfing, and open-ended questions.", image: 'team4' }, - { name: 'Nicholas Liautaud', slug: 'nick', role: "Mechanical Engineer (Fractional)", bio: "Nick has over 10 years of experience in robotics, rapid prototyping, biomedical sciences, and engineering. Nick formerly worked at Max Planck Neuroscience Institute, where he built a mechanism to examine Binocular Recovery in the visual cortex of mammals; Giliberti Electric Vehicles, where he assembled custom electric vehicles; and worked at DK Dynamic on custom part design and fabrication. Further, Nick holds a research role at FIU Innovative Anatomy Lab where he works to generate visual models of difficult anatomy concepts for medical school students. Nick is passionate about mentorship having worked at TechGarage Summer Camp for several years, where he shared his passion for engineering by teaching students rapid prototyping skills, programming, computer assisted design, and virtual reality.", image: 'team2' }, - { name: 'Carisse Joseph', slug: 'carisse', role: "Social Media Manager (Fractional)", bio: "Carisse Joseph is a Business strategist and analyst at Golden Hour where she uses data analysis and marketing to find solutions. She received her Bachelor's Degree in Management Information Systems from Florida Atlantic University in 2022 gaining a strong skillset in Cybersecurity, Business Analytics, and Business Management. Her deep understanding of account management, coupled with her expertise in creative advertising, customer service, and leadership, enables Carisse to think outside the box and approach challenges with innovative solutions. She consistently goes above and beyond to elevate the programs she oversees, ensuring their success and impact.", image: 'team3' } + { name: 'Hannah Herbst', slug: 'hannah', role: 'Chief Executive Officer', image: 'hannah', bio: 'Hannah Herbst is a Forbes 30 Under 30 inventor who has been recognized internationally for innovation. She developed an antibacterial, biomimetic wound dressing inspired by shark skin’s micropattern in FAU’s Biomechanics and Microbiology laboratories. For this work she won First Place and Best in Category in Translational Medical Science at the International Science and Engineering Fair in 2019. She further developed a chemical sensor for identifying airborne chemicals, and an ocean energy collection and conversion device for underdeveloped nations. She has presented her research at the White House to former POTUS, was named America’s Top Young Scientist by 3M and Discovery Education, and has been featured in Mashable, Business Insider, and more. Hannah was a Division 1 Track and Field Athlete, and she holds a B.S. in Management Information Systems with a concentration in Business Analytics from Florida Atlantic University and a certificate in Business and Innovation from Stanford University.' }, + { name: 'Laresa McIntyre', slug: 'laresa', role: 'Chief Financial Officer (Fractional)', image: 'laresa', bio: 'Laresa McIntyre is a seasoned financial leader who helps high-growth companies build strong, scalable foundations. She has spent her career guiding complex organizations through expansion, leading finance, forecasting, and operational planning with a clear, insight-driven approach. As CFO, she brings deep experience in creating financial clarity, shaping data-backed strategy, and building systems that support sustainable growth. Laresa has managed multimillion-dollar P&Ls across multiple geographies and is known for translating complex financial data into practical, founder-friendly decisions. She holds an MBA, a Master’s in Accounting, and is a Certified Management Accountant (CMA).' }, + { name: 'Jamie Saltzman', slug: 'jamie', role: 'VP of Commercial Strategy (Fractional)', image: 'jamie', bio: 'James “Jamie” Saltzman is an accomplished sales leader with more than two decades of success expanding market share and scaling sales organizations in the medical device and public safety industries. Jamie previously spent 27 years at ZOLL Medical, where he advanced from Customer Service Representative to Group Vice President overseeing Public Safety and Healthcare. His career spans strategic sales leadership, complex channel development, and national account growth across high-stakes environments. Jamie is now spearheading national distribution for AutoTQ®—Golden Hour Medical’s patented, FDA-registered automated tourniquet—where he is building a coast-to-coast distributor and manufacturer-rep network to accelerate adoption of lifesaving bleeding-control technology. Known for his analytical approach, relationship-driven leadership, and ability to penetrate competitive markets, Jamie brings unmatched expertise to Golden Hour Medical’s mission of making effective bleeding control accessible to every bystander.' }, + { name: 'Gabriella Brito', slug: 'gabriella', role: 'Operations and Administrative Coordinator', image: 'gabriella', bio: 'Gabriella Brito is the Operations and Administrative Coordinator at Golden Hour Medical, where she ensures the organization runs efficiently by managing day-to-day operations and providing critical administrative support. She earned her Bachelor’s Degree in Communication Studies from Florida Atlantic University, with a minor in Leadership and Human Resource Development. Gabriella applies her skills in communication, leadership, and organizational strategy to streamline processes, support teams, and enhance overall workflow. With a passion for building systems that help people and programs succeed, Gabriella is a key part of Golden Hour Medical’s operations, ensuring that the organization functions smoothly behind the scenes.' }, + { name: 'Devin Willis', slug: 'devin', role: 'Engineering Director (Fractional)', image: 'devin', bio: 'Devin is the Director of Engineering at Golden Hour Medical. He is skilled in electronics, product development, and biology research. He has conducted research at Max Planck Neuroscience Institute and the Institute for Human Health and Disease Prevention. Nationally recognized for his inventions, he has developed RNAPath and RNAScopeCount, innovative platforms for COVID-19 diagnostics; 3DSeq for automated 3D Spatial genomics on tumor biopsies, and SlideMap, a cost-effective cancer pathology and diagnostic deep learning platform. Devin was a Division 1 Track and Field athlete, and is a double major at the University of Florida studying Electrical Engineering and Management.' }, + { name: 'Nandini Murthy', slug: 'nandini', role: 'Quality Consultant', image: 'nandini', bio: 'Ms. Murthy has over 25 years of work experience in regulatory affairs, clinical and quality assurance functions with multiple device specialties. She has authored numerous, successful FDA submissions including a de novo, a modular PMA, a HDE, original PMAs, several original IDEs, pre-Submissions, PMA and IDE Supplements and 510(k)s for novel products including implantable devices, sensor/monitoring tools and diagnostic devices. She has experience with product approvals for the EU (CE Mark) and Canadian markets. She has led projects with complex submissions, where she has both managed a team and where necessary, written or executed on the various document deliverables in a hands-on manner. Ms. Murthy has a successful track record of on-time execution and FDA approvals. In addition to her core expertise in regulatory affairs, Ms. Murthy has designed and executed complex clinical trials and established quality systems to ISO 13485 and FDA Quality System requirements. She has helped early stage and more established larger companies develop their quality systems consistent with their stage of device development. She has experience in developing plans for Quality Systems projects, including tactically prioritizing and directing focus, and updating/communicating plans and status with Management.' }, + { name: 'Max Herbst', slug: 'max', role: 'Logistics Coordinator', image: 'max', bio: 'Max Herbst is a motivated operations and logistics professional with a strong foundation in political science and a proven track record of leadership. Currently serving as Product Operations Manager & Logistics Coordinator at Golden Hour Medical, he oversees quality assurance processes, implements inventory management systems, and provides operational insights to executive leadership. Previously, Max recruited physicians for underserved communities at Med Partners Locum Tenens, building lasting partnerships with hospitals across North America. With experience spanning healthcare staffing and hospitality management, he brings adaptability, people skills, and operational expertise. A graduate of Florida Atlantic University (B.A. in Political Science, GPA 3.88), Max has held multiple leadership roles, including Attorney General of Student Government and Co-Founder of the Speech & Debate Club. He is skilled in Excel, Power BI, and financial modeling, and holds a Florida Health & Life Insurance License. Outside of work, Max enjoys running, surfing, and open-ended questions.' }, + { name: 'Nick Liautaud', slug: 'nick', role: 'Mechanical Engineer (Fractional)', image: 'nick', bio: 'Nick has over 10 years of experience in robotics, rapid prototyping, biomedical sciences, and engineering. Nick formerly worked at Max Planck Neuroscience Institute, where he built a mechanism to examine Binocular Recovery in the visual cortex of mammals; Giliberti Electric Vehicles, where he assembled custom electric vehicles; and worked at DK Dynamic on custom part design and fabrication. Further, Nick holds a research role at FIU Innovative Anatomy Lab where he works to generate visual models of difficult anatomy concepts for medical school students. Nick is passionate about mentorship having worked at TechGarage Summer Camp for several years, where he shared his passion for engineering by teaching students rapid prototyping skills, programming, computer assisted design, and virtual reality.' }, + { name: 'Carisse Joseph', slug: 'carisse', role: 'Social Media Manager (Fractional)', image: 'carisse', bio: 'Carisse Joseph is a Business strategist and analyst at Golden Hour where she uses data analysis and marketing to find solutions. She received her Bachelor\'s Degree in Management Information Systems from Florida Atlantic University in 2022 gaining a strong skillset in Cybersecurity, Business Analytics, and Business Management. Her deep understanding of account management, coupled with her expertise in creative advertising, customer service, and leadership, enables Carisse to think outside the box and approach challenges with innovative solutions. She consistently goes above and beyond to elevate the programs she oversees, ensuring their success and impact.' } ], testimonials: [ { quote: 'To have a product like this... was not even a question.', - name: 'Anthony Sizemore', - title: 'Chief, Cape Coral Police Department' + name: 'Chief Anthony Sizemore', + title: 'Cape Coral Police Department' }, { quote: 'Knowing how to use [AutoTQ] is going to save someone’s life.', - name: 'Colin Johnson', - title: 'Deputy Chief, Lee County Public Safety' + name: 'Deputy Chief Colin Johnson', + title: 'Lee County Public Safety' }, { - quote: 'It is very difficult to put a tourniquet on... you put it on, strap it, push the button, and that’s it.', - name: 'Dr. Peter Antevy', - title: 'M.D.' + quote: 'It is very difficult to put a tourniquet on. What I love about AutoTQ is that, first, it has a wider band, and second of all, you put it on, strap it, push the button, and that’s it.', + name: 'Dr. Peter Antevy, M.D.', + title: 'Pediatric Emergency Medicine Physician and EMS Medical Director' }, { - quote: 'There has never been a greater need for an intuitive tourniquet...', - name: 'Gracie Diaz', - title: 'Deputy Superintendent, FAU K-12 Lab School District' + quote: 'This is the AED of bleeding. You have a device here that has wide-scale interest, certainly from the public and private sector.', + name: 'Dr. Robert Glatter', + title: 'Emergency Medicine Physician, Lenox Hill Hospital' + } + ], + news: [ + { + date: 'Feb 9, 2026', + title: 'A 21-Year-Old Saw a Deadly Gap in Emergency Care- Now the Solution Is Used Nationwide', + url: 'https://theautotq.com/deployed' + }, + { + date: 'Jan 19, 2026', + title: 'Golden Hour Medical Aligns with The Blueprint Corporation to Expand Safety Solutions Nationwide', + url: 'https://theautotq.com/blueprint' + }, + { + date: 'Jan 19, 2026', + title: 'Golden Hour Medical and PMG Safety Partner to Expand Workplace Safety Access', + url: 'https://theautotq.com/pmg' + }, + { + date: 'Jan 8, 2026', + title: 'Lee County Deploys AutoTQ® Kits Alongside Public AEDs in County Parks', + url: 'https://theautotq.com/lee-press-release' } ], nav: [ @@ -81,9 +112,11 @@ module.exports = { { label: 'Training', href: '/training' }, { label: 'Literature', href: '/literature' }, { label: 'News', href: '/news' }, - { label: 'Testimonials', href: '/testimonials' }, { label: 'Articles', href: '/articles' }, - { label: 'Contact', href: '/contact' } + { label: 'Testimonials', href: '/testimonials' }, + { label: 'Shop', href: '/shop' }, + { label: 'Contact', href: '/contact' }, + { label: 'Report a Life Saved', href: '/report' } ], theme: { colors: { diff --git a/views/articles.ejs b/views/articles.ejs index c45fc5f..95d296d 100644 --- a/views/articles.ejs +++ b/views/articles.ejs @@ -2,20 +2,21 @@

Articles

-

Source-linked industry articles and preparedness insights.

+

Preparedness and safety articles from AutoTQ source pages.

-
-
-

2026-02-19

-

Safety Preparedness Across Transportation Operations

-

Source: AutoTQ Articles

-
-
-
-

View all articles on theautotq.com →

+
+ + + + + + + + +
diff --git a/views/carisse.ejs b/views/carisse.ejs index 7378998..458d101 100644 --- a/views/carisse.ejs +++ b/views/carisse.ejs @@ -1 +1,17 @@ -
Carisse

Carisse

<%= (config.team.find(t => t.slug === 'carisse') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'carisse') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'carisse'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/company.ejs b/views/company.ejs index b7f4de3..7cb61a5 100644 --- a/views/company.ejs +++ b/views/company.ejs @@ -6,37 +6,30 @@ -
-
-

Mission

-

Advance life-saving readiness by making tourniquet intervention more approachable for first responders and everyday users.

-
-
-
-
-

Company Gallery

- -
-
- -

Team

<% (config.team || []).forEach(member => { %> -
+
<%= member.name %>

<%= member.name %>

-

<%= member.role || 'Role and full bio available from source profile.' %>

+

<%= member.role %>

View profile →
<% }) %>
+ +
+
+

Company Gallery

+ +
+
diff --git a/views/devin.ejs b/views/devin.ejs index d2983c7..bf183b2 100644 --- a/views/devin.ejs +++ b/views/devin.ejs @@ -1 +1,17 @@ -
Devin

Devin

<%= (config.team.find(t => t.slug === 'devin') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'devin') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'devin'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/firsttimeusers.ejs b/views/firsttimeusers.ejs new file mode 100644 index 0000000..05da7ee --- /dev/null +++ b/views/firsttimeusers.ejs @@ -0,0 +1,9 @@ +
+
+
+

First-Time User Finding

+

Source pages reference 92% first-time-user success.

+

View source URL →

+
+
+
diff --git a/views/gabriella.ejs b/views/gabriella.ejs index b8c2c14..7c9666f 100644 --- a/views/gabriella.ejs +++ b/views/gabriella.ejs @@ -1 +1,17 @@ -
Gabriella

Gabriella

<%= (config.team.find(t => t.slug === 'gabriella') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'gabriella') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'gabriella'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/hannah.ejs b/views/hannah.ejs index 21823b4..26b2214 100644 --- a/views/hannah.ejs +++ b/views/hannah.ejs @@ -1 +1,17 @@ -
Hannah

Hannah

<%= (config.team.find(t => t.slug === 'hannah') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'hannah') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'hannah'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/index.ejs b/views/index.ejs index 67ad836..3f6bd63 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -1,17 +1,19 @@
+ +
-
+

FDA-Registered • Patented • Trusted Nationwide

Automatic Bleeding Control for Real-World Emergencies

-

AutoTQ closes the bleeding control gap with a two-step operation, one-button activation, and audio guidance that helps bystanders and professionals act fast.

+

AutoTQ closes the bleeding control gap with two-step operation, one-button activation, and audio guidance that helps bystanders and professionals act fast.

-
+
AutoTQ demonstration
@@ -19,59 +21,69 @@
-
+

The bleeding control gap is real

In severe extremity bleeding events, people on scene need a solution they can deploy quickly and correctly. AutoTQ was built to simplify intervention at the point of injury.

-
-

92%

First-time user success in cited findings.

-

100%

Arterial occlusion mention in cited findings.

+
+

92%

First-time user success from source research pages.

+

100%

Arterial occlusion from source research pages.

-
-

Research-backed and deployment-ready

-

AutoTQ emphasizes intuitive use, rapid application, and consistency under stress. Explore published references and source pages in Research.

- Review research and sources → +
+
+

Watch AutoTQ in deployment context

+

Video source: Cape Coral Police deployment page.

+

Open source page →

+
+
+ +
-

Trusted nationwide

-

Organizations across public safety, education, and operations are adopting AutoTQ into preparedness plans.

-
- Public Safety - Law Enforcement - Schools - Parks & Recreation - Transportation Operations - Workplace Safety Programs +

Latest updates

+
+ <% (config.news || []).forEach(item => { %> + + <% }) %>
-

Testimonials

+

Testimonials

- <% (config.testimonials || []).slice(0, 2).forEach(t => { %> -
+ <% (config.testimonials || []).forEach(t => { %> +

“<%= t.quote %>”

— <%= t.name %>, <%= t.title %>
<% }) %>
-

Read all testimonials →

-
+

Bring AutoTQ into your safety ecosystem

-

Contact the AutoTQ team for deployment, training, and literature.

+

Contact the team for deployment, training, literature, and partnership details.

Contact AutoTQ
diff --git a/views/jamie.ejs b/views/jamie.ejs index 16c35c2..0d3539a 100644 --- a/views/jamie.ejs +++ b/views/jamie.ejs @@ -1 +1,17 @@ -
Jamie

Jamie

<%= (config.team.find(t => t.slug === 'jamie') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'jamie') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'jamie'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/laresa.ejs b/views/laresa.ejs index 7644dac..a009b72 100644 --- a/views/laresa.ejs +++ b/views/laresa.ejs @@ -1 +1,17 @@ -
Laresa

Laresa

<%= (config.team.find(t => t.slug === 'laresa') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'laresa') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'laresa'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/literature.ejs b/views/literature.ejs index 41bc217..00f947c 100644 --- a/views/literature.ejs +++ b/views/literature.ejs @@ -2,13 +2,13 @@

Literature

-

Official AutoTQ literature files.

+

Official AutoTQ literature and reference files.

<% (config.literature || []).forEach((doc) => { %> -
+

<%= doc.title %>

PDF document

Open PDF diff --git a/views/max.ejs b/views/max.ejs index e29d950..a0e9699 100644 --- a/views/max.ejs +++ b/views/max.ejs @@ -1 +1,17 @@ -
Max

Max

<%= (config.team.find(t => t.slug === 'max') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'max') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'max'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/nandini.ejs b/views/nandini.ejs index fd5c41f..0a579fe 100644 --- a/views/nandini.ejs +++ b/views/nandini.ejs @@ -1 +1,17 @@ -
Nandini

Nandini

<%= (config.team.find(t => t.slug === 'nandini') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'nandini') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'nandini'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/news.ejs b/views/news.ejs index ba487d9..01f1b1f 100644 --- a/views/news.ejs +++ b/views/news.ejs @@ -2,27 +2,19 @@

News

-

Recent source-provided AutoTQ headlines.

+

Recent AutoTQ news and press links.

-
-

Feb 9, 2026

-

A 21-Year-Old Saw a Deadly Gap in Emergency Care- Now the Solution Is Used Nationwide

- View source → -
-
-

Jan 19, 2026

-

Golden Hour Medical Aligns with The Blueprint Corporation to Expand Safety Solutions Nationwide

- View source → -
-
-

Jan 8, 2026

-

Lee County Deploys AutoTQ® Kits Alongside Public AEDs in County Parks

- View source → + <% (config.news || []).forEach(item => { %> + + <% }) %>
diff --git a/views/nick.ejs b/views/nick.ejs index f31e866..f5c9f80 100644 --- a/views/nick.ejs +++ b/views/nick.ejs @@ -1 +1,17 @@ -
Nick

Nick

<%= (config.team.find(t => t.slug === 'nick') || {}).role || 'Role not included in provided source extract.' %>

<%= (config.team.find(t => t.slug === 'nick') || {}).bio || 'Full bio text was not included in the provided source extract.' %>

← Back to Company

\ No newline at end of file +
+
+
+ <% const member = (config.team || []).find(t => t.slug === 'nick'); %> + <% if (member) { %> + <%= member.name %> +

<%= member.name %>

+

<%= member.role %>

+

<%= member.bio %>

+ <% } else { %> +

Profile

+

Profile not found.

+ <% } %> +

← Back to Company

+
+
+
diff --git a/views/occlusion.ejs b/views/occlusion.ejs new file mode 100644 index 0000000..7f26cda --- /dev/null +++ b/views/occlusion.ejs @@ -0,0 +1,9 @@ +
+
+
+

Occlusion Finding

+

Source pages reference 100% arterial occlusion.

+

View source URL →

+
+
+
diff --git a/views/report.ejs b/views/report.ejs new file mode 100644 index 0000000..e381f90 --- /dev/null +++ b/views/report.ejs @@ -0,0 +1,9 @@ +
+
+
+

Report a Life Saved

+

Use the official source page to report a life saved event.

+

Open Report Page

+
+
+
diff --git a/views/research.ejs b/views/research.ejs index e14e744..23ec98c 100644 --- a/views/research.ejs +++ b/views/research.ejs @@ -8,17 +8,17 @@
-
+ -
diff --git a/views/shop.ejs b/views/shop.ejs new file mode 100644 index 0000000..ad2271b --- /dev/null +++ b/views/shop.ejs @@ -0,0 +1,9 @@ +
+
+
+

Shop

+

For current purchasing options, use the official source page.

+

Open Official Shop

+
+
+
diff --git a/views/testimonials.ejs b/views/testimonials.ejs index cc59a4a..266b31c 100644 --- a/views/testimonials.ejs +++ b/views/testimonials.ejs @@ -2,13 +2,14 @@

Testimonials

-

Real quotes from source-provided attributions.

+

Feedback from public safety and medical professionals.

-
+ +
<% (config.testimonials || []).forEach(t => { %> -
+

“<%= t.quote %>”

— <%= t.name %>, <%= t.title %>
diff --git a/views/training.ejs b/views/training.ejs index ac9f4ee..0486708 100644 --- a/views/training.ejs +++ b/views/training.ejs @@ -2,23 +2,21 @@

Training

-

Prepare teams to act confidently when every second counts.

+

Training and preparedness resources for effective deployment.

+

View source training page →

+
-
-
- Training resources thumbnail -
-
-

Core training flow

-
    -
  • Recognize severe bleeding scenarios
  • -
  • Apply cuff and tighten
  • -
  • Activate inflation and follow audio instructions
  • -
  • Escalate to emergency services and advanced care
  • -
-
+
+
+

Deployment Familiarization

+

Introduce teams to two-step use and one-button activation workflows.

+
+
+

Scenario Practice

+

Rehearse emergency response and communication under stress conditions.

+