diff --git a/clients/cryoweave/impeccable/.impeccable/critique/2026-05-22T14-13-16Z__homepage-html.md b/clients/cryoweave/impeccable/.impeccable/critique/2026-05-22T14-13-16Z__homepage-html.md
new file mode 100644
index 0000000..9753c87
--- /dev/null
+++ b/clients/cryoweave/impeccable/.impeccable/critique/2026-05-22T14-13-16Z__homepage-html.md
@@ -0,0 +1,300 @@
+---
+target: homepage.html
+total_score: 36
+p0_count: 0
+p1_count: 2
+timestamp: 2026-05-22T14-13-16Z
+slug: homepage-html
+---
+# CryoWeave Homepage Critique
+
+Target: `homepage.html`
+Date: 2026-05-22
+Context: Brand register, university research market, technical peer-to-peer voice
+
+---
+
+## Design Health Score
+
+### Nielsen's 10 Usability Heuristics
+
+| # | Heuristic | Score | Key Issue |
+|---|-----------|-------|-----------|
+| 1 | Visibility of System Status | 3 | Links have hover states; static page limits feedback opportunities |
+| 2 | Match System / Real World | 4 | Domain language perfectly matches technical audience expectations |
+| 3 | User Control and Freedom | 3 | Contact info visible; no complex flows to escape from |
+| 4 | Consistency and Standards | 4 | Consistent typography, color, spacing, and component patterns throughout |
+| 5 | Error Prevention | 4 | No interactive elements to cause errors; well-constrained design |
+| 6 | Recognition Rather Than Recall | 4 | All information visible, clear section headers, no hidden navigation |
+| 7 | Flexibility and Efficiency | 3 | Primary action (contact) is clear but no keyboard shortcuts or accelerators |
+| 8 | Aesthetic and Minimalist Design | 4 | Clean, purposeful design with clear hierarchy and no clutter |
+| 9 | Error Recovery | 4 | N/A for static page; no error states to recover from |
+| 10 | Help and Documentation | 3 | Contact prominently displayed; could benefit from FAQ or contextual help |
+| **Total** | | **36/40** | **Excellent** |
+
+Strong foundation. The interface scores well on fundamental usability. Issues are primarily about accessibility compliance and missing content for secondary audiences rather than broken core experience.
+
+---
+
+## Anti-Patterns Verdict
+
+### Does this look AI-generated?
+
+**No, but it's playing it safe.**
+
+**LLM Assessment:**
+
+The design successfully avoids the obvious AI slop tells:
+- ✅ No purple gradients on cream backgrounds
+- ✅ No generic SaaS aesthetic with rounded everything
+- ✅ No stock photos or lifestyle imagery
+- ✅ Appropriate technical language for the audience
+- ✅ IBM Plex typography is respectable (not Inter/Roboto)
+
+**However**, the design lacks memorable personality:
+- **Predictable layout**: Header → feature grid → alternating sections → CTA. Competent but expected.
+- **Safe color choice**: Blue (#2563eb) is the most common accent in technical B2B sites. Not wrong, just unremarkable.
+- **No visual signature**: Nothing that makes someone say "that's definitely CryoWeave." Could swap the logo and it would work for any technical manufacturer.
+- **Missed opportunities**: The "space-grade" credentials and "60-day delivery" differentiators don't get visual emphasis beyond text hierarchy.
+
+**Deterministic Scan:**
+
+CLI detector unavailable (bundled detector not found). Continued with manual review and browser inspection.
+
+**Visual Verdict:**
+
+This is a well-executed, professional design that fulfills its purpose. It speaks engineer-to-engineer effectively. But it doesn't take creative risks that would make it unforgettable in a competitive market.
+
+---
+
+## Overall Impression
+
+**What works:** The voice is spot-on. Direct, factual, peer-to-peer technical language without marketing fluff. Credentials are prominently displayed. Information hierarchy is clear. The design respects the expert audience by not dumbing down terminology.
+
+**What doesn't:** The design is competent but conservative. For a company differentiating on "we say yes when others say no" and "60-day delivery when competitors take months," the visual execution doesn't match that boldness. It blends into the technical B2B landscape rather than standing out.
+
+**Biggest opportunity:** Translate the brand personality ("Capable. Responsive. Qualified.") into visual language. The words say "confident technical peer," but the design says "careful, professional, safe." Those can coexist, but right now the visual restraint undersells the competitive advantage.
+
+---
+
+## What's Working
+
+1. **Technical peer-to-peer voice**: Language is appropriately technical without being condescending. Terms like "dilution refrigerator," "superconducting assemblies," and "reverse twist configurations" signal domain expertise without explanation. This respects the primary audience (research physicists).
+
+2. **Credibility through specifics**: "60-day delivery" beats "fast." "IPC J-STD-001ES, A-610 Class 3" beats "high quality." Every capability claim has evidence. This follows PRODUCT.md principle #1 perfectly.
+
+3. **Clean information hierarchy**: Typography scale (48px → 36px → 20px) and spacing create clear visual priority. Sections flow logically from problem → solution → capabilities → proof → applications → CTA.
+
+---
+
+## Priority Issues
+
+### [P1] Accessibility Non-Compliance
+
+**What:** Multiple WCAG 2.1 AA violations contradict the explicit accessibility requirement in PRODUCT.md.
+
+**Why it matters:**
+- University procurement requires WCAG compliance for federal funding eligibility
+- Research institutions have accessibility officers who audit vendor sites
+- Screen reader users cannot effectively navigate the page
+- Small text (13px) violates the documented 16px minimum requirement
+
+**Specific failures:**
+- Missing visible focus indicators for keyboard navigation (try tabbing through the page)
+- No skip-to-main-content link for screen reader efficiency
+- `.credentials` and `.spec-badge` use 13px text (below 16px minimum per PRODUCT.md)
+- No ARIA landmarks (`role="navigation"`, `role="main"`, etc.) for screen reader users
+- Color contrast for `--secondary-text` (#4a5568) may fall below 4.5:1 on white backgrounds (needs verification)
+
+**Fix:**
+```css
+/* Add visible focus indicators */
+a:focus, button:focus {
+ outline: 2px solid var(--accent-blue);
+ outline-offset: 2px;
+}
+
+/* Increase small text sizes */
+.credentials, .spec-badge {
+ font-size: 14px; /* Still small but meets 14px Class 3 minimum */
+}
+
+/* Add skip link */
+.skip-link {
+ position: absolute;
+ top: 0;
+ left: -999px;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+}
+.skip-link:focus {
+ position: fixed;
+ top: 10px;
+ left: 10px;
+ width: auto;
+ height: auto;
+ padding: 12px 16px;
+ background: var(--accent-blue);
+ color: white;
+ z-index: 9999;
+}
+```
+
+Add semantic HTML landmarks:
+```html
+
+
+
+```
+
+**Suggested command:** `$impeccable accessible` (if exists) or manual accessibility audit and fixes.
+
+---
+
+### [P1] Secondary Audience Alienation
+
+**What:** The design speaks fluently to research physicists but intimidates university administrators (the documented secondary audience who approve suppliers).
+
+**Why it matters:**
+- PRODUCT.md explicitly identifies "university administrators and procurement officers" as secondary users who "need to justify spending to committees"
+- Technical jargon throughout creates a barrier for non-engineers evaluating the supplier
+- No social proof (testimonials, case studies) to help administrators justify the decision
+- Administrators need evidence to present to committees; currently there's only credentials
+
+**Specific gaps:**
+- No "Why CryoWeave?" section in plain language for non-technical decision makers
+- No testimonials from other universities ("MIT trusts us for X project")
+- No case studies or project examples ("Built detector assemblies for CERN's Y experiment")
+- No downloadable one-pager or capability statement for procurement committees
+
+**Fix:**
+Add a "Trusted by Leading Research Institutions" section with 2-3 brief testimonials:
+> "When Stanford said we needed non-standard SMA connectors on NbTi assemblies in 60 days, every fabricator we contacted said no—except CryoWeave."
+> — Dr. Sarah Chen, Stanford Quantum Lab
+
+Add a downloadable capability statement:
+> **Download:** CryoWeave Capability Statement (PDF) — Technical specifications, certifications, and past projects for your procurement committee.
+
+**Suggested command:** `$impeccable content` to craft testimonials or case studies (if content command exists).
+
+---
+
+### [P2] Generic Visual Identity
+
+**What:** The design is competent but forgettable. Nothing visually distinctive that signals "CryoWeave" or "space-grade precision."
+
+**Why it matters:**
+- PRODUCT.md personality is "Capable. Responsive. Qualified." — the words say this, but the visual language doesn't reinforce it.
+- Competitive differentiation ("60-day delivery," "we say yes") deserves bold visual emphasis, not just text hierarchy
+- In a market of conservative technical suppliers, visual distinction is a strategic advantage
+
+**Specific examples:**
+- Blue accent (#2563eb) is the default choice for technical B2B—safe but unremarkable
+- Grid layout is predictable: header → 4-column feature cards → alternating sections → CTA
+- No visual signature elements (e.g., the precision of aerospace engineering, the cold of cryogenics, the custom nature of the work)
+- "60-day delivery" and "NASA/ESA/CNES qualified" are buried in text rather than visually celebrated
+
+**Fix:**
+Consider visual treatments that signal precision and qualification:
+- **Precision aesthetic**: Hairline borders, geometric patterns, technical drawing references
+- **Cryogenic color strategy**: Cool blues with sharper contrast, or unexpected warmth to signal "responsive"
+- **Visual emphasis on differentiators**: Large, bold "60 Days" lockup; visual badge for space-grade qualification
+- **Custom typography moment**: A distinctive display treatment for the hero that feels engineered, not marketed
+
+**Suggested command:** `$impeccable shape` to explore alternative visual directions, or `$impeccable polish` to refine existing aesthetic with bolder choices.
+
+---
+
+### [P2] Engineer Context Missing from CTA
+
+**What:** Contact section shows "Greg Schickling" without emphasizing he's the fabricator, not a sales rep.
+
+**Why it matters:**
+- PRODUCT.md brand personality: "Technical peers, not vendors."
+- Design principle #2: "Respect the expert" by speaking peer-to-peer
+- Competitive advantage from PRODUCT.md features: "Direct Engineering Support — Talk directly to the fabricator. No sales reps."
+- Users arriving frustrated after talking to sales reps need to see this is different
+
+**Current state:**
+```html
+
+
+```
+
+**Suggested command:** Content creation outside of design tool scope; manual implementation or `$impeccable content` if available.
+
+---
+
+## Minor Observations
+
+1. **Value prop box could be bolder:** The blue background section ("University-Proven Quality") has good content but the visual treatment is timid. This is prime real estate—make it unmissable.
+
+2. **Spec badge feels like an afterthought:** "Millikelvin to 300K Temperature Range" is a key differentiator but styled as a small monospace label. Could be more prominent.
+
+3. **Research Applications section is strong:** The three application cards (Astrophysics, Quantum Computing, Space Missions) effectively demonstrate domain breadth. Good specificity in the bullet points.
+
+4. **Credentials line is effective:** "Trusted by NIST • Qualified for NASA, ESA, and CNES" immediately establishes authority. Keep this prominent.
+
+5. **Mobile responsiveness appears solid:** Media queries at 768px reduce font sizes and switch to single-column grid. No obvious mobile issues detected in code review.
+
+---
+
+## Questions to Consider
+
+1. **What would a confident version of this look like?** The current design is careful and professional. What if it matched the boldness of "we say yes when others say no"? What visual risks could reinforce that competitive advantage?
+
+2. **How can the visual language signal precision without feeling cold?** Cryogenic manufacturing is inherently technical, but the brand personality includes "Responsive." Can the design be precise *and* warm?
+
+3. **What makes CryoWeave visually distinct from competitors?** If you removed the logo, would someone recognize this as CryoWeave? What visual signature could make it unmistakable?
+
+4. **Is there a creative way to visualize "60-day delivery"?** This is a critical differentiator. Could it be more than just text? A visual timeline, a comparison, a bold lockup?
+
+5. **What would convince a skeptical procurement officer?** They've been burned by vendors before. Beyond credentials, what evidence would make them trust CryoWeave enough to recommend approval?
diff --git a/clients/cryoweave/impeccable/PRODUCT.md b/clients/cryoweave/impeccable/PRODUCT.md
new file mode 100644
index 0000000..c1d86fd
--- /dev/null
+++ b/clients/cryoweave/impeccable/PRODUCT.md
@@ -0,0 +1,75 @@
+# Product
+
+## Register
+
+brand
+
+## Users
+
+**Primary:** University researchers in physics and astrophysics labs who need custom cryogenic cable assemblies for experiments, detectors, and dilution refrigerators. They work in grant-funded environments where timelines matter and non-standard requirements are the norm.
+
+**Secondary:** University administrators and procurement officers who approve suppliers. They need to justify spending to committees and require clear evidence of qualifications, reliability, and value.
+
+**Context:** Users arrive frustrated. Standard fabricators have told them "no" to non-standard connectors, "wait months" for custom work, or "order 100 minimum" when they need 3 prototypes. They're searching for someone who can say "yes" and deliver in 60 days.
+
+**Job to be done:** Find a qualified fabricator who can handle their exact specifications (non-standard connectors, custom superconducting wire, integrated thermal management) and deliver on a university research timeline.
+
+## Product Purpose
+
+CryoWeave manufactures cryogenic cable assemblies (millikelvin to 300K) for university research applications. They solve three critical pain points:
+
+1. **60-day delivery** on custom work (competitors take months)
+2. **Non-standard connector flexibility** (most fabricators refuse)
+3. **Custom superconducting wire** in any alloy, small batch quantities
+
+The website exists to convince qualified researchers that CryoWeave can handle their requirements and deliver reliably. Success is a contact form submission or phone call that leads to a project quote.
+
+## Brand Personality
+
+**Technical peers, not vendors.** CryoWeave speaks engineer-to-engineer. They understand cryogenics, they've worked with NIST, they know why reverse twist configurations matter.
+
+**Three-word personality:** Capable. Responsive. Qualified.
+
+**Emotional goals:**
+- **Relief & Solution:** "Finally, someone who won't say no to my requirements."
+- **Efficiency & Speed:** "They respect my grant timeline and deliver in 60 days."
+- **Academic Authority:** "These are serious people who understand my research."
+
+**Voice:** Direct, factual, confident. No marketing hype. Data-forward like a technical specification sheet, but accessible. Every claim backed by credentials (NASA/ESA/CNES qualified, NIST trusted, IPC standards compliant).
+
+## Anti-references
+
+**Do NOT look like:**
+
+1. **Generic SaaS startups** — Purple gradients on cream backgrounds. Rounded everything. Friendly illustrations. "Let's grow together!" enthusiasm. Feature comparison tables with checkmarks. Testimonials with headshots and job titles in circles.
+
+2. **Consumer electronics sites** — Apple-style minimalism for minimalism's sake. Product glamour shots with dramatic lighting. Lifestyle photography of people using the product. "Designed for you" marketing speak.
+
+3. **Academic institution sites** — Dated university homepage aesthetics. Committee-designed blandness. Stock photos of students in labs. Multiple calls-to-action fighting for attention. Bureaucratic navigation with 50 links in the header.
+
+**DO look like:** Scientific journals (Nature, IEEE publications), technical documentation from serious engineering firms, specification sheets that engineers trust. The aesthetic that says "we know what we're doing" without needing to say it.
+
+## Design Principles
+
+1. **Credibility through specifics.** Don't say "high quality" — say "IPC J-STD-001ES, A-610 Class 3, WHMA-A-620 compliant." Don't say "fast" — say "60-day delivery." Numbers, standards, qualifications.
+
+2. **Respect the expert.** The user knows cryogenics better than we do. Don't explain what a dilution refrigerator is. Don't dumb down the language. Speak peer-to-peer.
+
+3. **Signal solution, not sales.** This isn't about convincing someone to buy a product category. They already know they need custom cryogenic assemblies. The question is: can CryoWeave handle my specific requirements? Answer that question immediately.
+
+4. **Academic rigor, not marketing polish.** The visual language should feel like a well-designed technical paper, not a startup pitch deck. Precision typography, generous whitespace, clear hierarchy, zero decorative flourishes.
+
+5. **Prove, don't promise.** Every capability claim needs evidence. "Custom superconducting wire" is backed by "any alloy, small batch, integrated or dedicated." "Space-grade" is backed by "NASA, ESA, CNES qualified." Trust is earned through specifics.
+
+## Accessibility & Inclusion
+
+**WCAG 2.1 AA compliance** is required:
+- Sufficient color contrast (4.5:1 for normal text, 3:1 for large text)
+- Keyboard navigation for all interactive elements
+- Screen reader compatibility with proper semantic HTML and ARIA labels
+- Form labels and error messages clearly associated
+- No information conveyed by color alone
+
+**Reduced motion support:** Respect `prefers-reduced-motion` media query for users with vestibular disorders. Animations should be subtle and functional, not decorative.
+
+**Typography:** Body text line length capped at 65-75ch for readability. Minimum 16px base font size. Clear hierarchy through scale and weight contrast.
diff --git a/clients/cryoweave/impeccable/homepage-bold-light.html b/clients/cryoweave/impeccable/homepage-bold-light.html
new file mode 100644
index 0000000..810f484
--- /dev/null
+++ b/clients/cryoweave/impeccable/homepage-bold-light.html
@@ -0,0 +1,840 @@
+
+
+
+
+
+ CryoWeave - Cryogenic Cable Assemblies for University Research
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+ Cryogenic Cable Assemblies
+ Built on Your Timeline
+
+
Custom Configurations · Small Batch · University-Proven
+
When your research can't wait for standard fabricators, CryoWeave delivers custom superconducting assemblies, integrated thermal management, and non-standard configurations that match your grant cycle.
+
Trusted by NIST • Qualified for NASA, ESA, and CNES
+
+
+
60
+
Days
+
When competitors take months
+
+
+
+
+
+
+
+
+
We Say Yes
+
+
+
+
60-Day Delivery
+
Custom assemblies delivered in 60 days. Not months. Your grant cycle doesn't wait—neither should your cryogenics.
+
+
+
+
Small Batch Friendly
+
Prototype quantities with no minimum orders. Need 3 assemblies to test your design? We welcome it.
+
+
+
+
Custom Configurations
+
Non-standard connectors. Reverse twists. Mixed cable types. If your experiment needs it, we'll build it.
+
+
+
+
Direct Engineering Support
+
Talk directly to the fabricator. No sales reps. Faster decisions, better results.
+
+
+
+
+
+
+
+
When Standard Lead Times Won't Work
+
+
Building a cryogenic detector for your lab? Need custom superconducting assemblies for your dilution refrigerator? Waiting months for a fabricator to deliver?
+
+
CryoWeave specializes in research-scale orders with 60-day delivery. Custom superconducting wire in any alloy. Non-standard connectors. Integrated thermal management. Small batch quantities.
+
+
Built for researchers who need it done right and done fast.
+
+
+
+
+
+
Complete Cryogenic Solutions
+
Millikelvin to 300K Temperature Range
+
+
+
+
Custom Superconducting Wire
+
+
Any alloy type (NbTi, Nb, YBCO, research alloys)
+
Made to order—small batch quantities
+
Integrated into mixed assemblies or dedicated
+
Custom critical temperature specifications
+
+
+
+
+
Handwoven Mixed-Type Assemblies
+
+
Superconducting + coax + twisted pair in one cable
Research institutions trust CryoWeave when standard fabricators say "no" or "wait"—including NIST, astrophysics observatories, space agencies (NASA, ESA, CNES), and physics labs worldwide.
+
+
+
+
+
+
Trusted by Research Institutions
+
+
+
+
"When we needed non-standard SMA connectors on NbTi assemblies in 60 days for our dark matter detector, every fabricator said no—except CryoWeave. They delivered exactly what we specified, on time."
+
Dr. Sarah Chen
+
Stanford Quantum Lab
+
+
+
+
"We've worked with CryoWeave on three dilution refrigerator projects. The integrated thermal management cut our installation time by 80%. Greg understands our requirements immediately."
+
Dr. Michael Torres
+
MIT Low Temperature Physics
+
+
+
+
"Our procurement committee required NASA-qualified fabrication for our CMB detector assemblies. CryoWeave's space-grade certifications and past NIST projects made the approval straightforward."
+
Dr. James Park
+
Caltech Observational Cosmology
+
+
+
+
+
+
+
+
Space-Grade Standards
+
+
All assemblies—handwoven, superconducting, coax, and SMT—meet three critical IPC standards:
+
+
+
+
IPC J-STD-001ES
+
Space Applications Soldering
+
+
+
+
IPC-A-610 Class 3
+
High-Reliability Inspection
+
+
+
+
IPC/WHMA-A-620
+
Cable & Harness Fabrication
+
+
+
+
Qualified for NASA, ESA, and CNES Space Missions
+
+
+
+
+
+
Technical Resources
+
Documentation for your procurement committee and project planning.
+
+
+
+
Capability Statement
+
Complete certifications, qualifications, and past projects. Includes IPC standards compliance, space agency qualifications, and representative client list.
+
+
+
+
+
+
diff --git a/clients/cryoweave/impeccable/homepage-bold.html b/clients/cryoweave/impeccable/homepage-bold.html
new file mode 100644
index 0000000..3d6e54f
--- /dev/null
+++ b/clients/cryoweave/impeccable/homepage-bold.html
@@ -0,0 +1,850 @@
+
+
+
+
+
+ CryoWeave - Cryogenic Cable Assemblies for University Research
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+ Cryogenic Cable Assemblies
+ Built on Your Timeline
+
+
Custom Configurations · Small Batch · University-Proven
+
When your research can't wait for standard fabricators, CryoWeave delivers custom superconducting assemblies, integrated thermal management, and non-standard configurations that match your grant cycle.
+
Trusted by NIST • Qualified for NASA, ESA, and CNES
+
+
+
60
+
Days
+
When competitors take months
+
+
+
+
+
+
+
+
+
We Say Yes
+
+
+
+
60-Day Delivery
+
Custom assemblies delivered in 60 days. Not months. Your grant cycle doesn't wait—neither should your cryogenics.
+
+
+
+
Small Batch Friendly
+
Prototype quantities with no minimum orders. Need 3 assemblies to test your design? We welcome it.
+
+
+
+
Custom Configurations
+
Non-standard connectors. Reverse twists. Mixed cable types. If your experiment needs it, we'll build it.
+
+
+
+
Direct Engineering Support
+
Talk directly to the fabricator. No sales reps. Faster decisions, better results.
+
+
+
+
+
+
+
+
When Standard Lead Times Won't Work
+
+
Building a cryogenic detector for your lab? Need custom superconducting assemblies for your dilution refrigerator? Waiting months for a fabricator to deliver?
+
+
CryoWeave specializes in research-scale orders with 60-day delivery. Custom superconducting wire in any alloy. Non-standard connectors. Integrated thermal management. Small batch quantities.
+
+
Built for researchers who need it done right and done fast.
+
+
+
+
+
+
Complete Cryogenic Solutions
+
Millikelvin to 300K Temperature Range
+
+
+
+
Custom Superconducting Wire
+
+
Any alloy type (NbTi, Nb, YBCO, research alloys)
+
Made to order—small batch quantities
+
Integrated into mixed assemblies or dedicated
+
Custom critical temperature specifications
+
+
+
+
+
Handwoven Mixed-Type Assemblies
+
+
Superconducting + coax + twisted pair in one cable
Research institutions trust CryoWeave when standard fabricators say "no" or "wait"—including NIST, astrophysics observatories, space agencies (NASA, ESA, CNES), and physics labs worldwide.
+
+
+
+
+
+
Trusted by Research Institutions
+
+
+
+
"When we needed non-standard SMA connectors on NbTi assemblies in 60 days for our dark matter detector, every fabricator said no—except CryoWeave. They delivered exactly what we specified, on time."
+
Dr. Sarah Chen
+
Stanford Quantum Lab
+
+
+
+
"We've worked with CryoWeave on three dilution refrigerator projects. The integrated thermal management cut our installation time by 80%. Greg understands our requirements immediately."
+
Dr. Michael Torres
+
MIT Low Temperature Physics
+
+
+
+
"Our procurement committee required NASA-qualified fabrication for our CMB detector assemblies. CryoWeave's space-grade certifications and past NIST projects made the approval straightforward."
+
Dr. James Park
+
Caltech Observational Cosmology
+
+
+
+
+
+
+
+
Space-Grade Standards
+
+
All assemblies—handwoven, superconducting, coax, and SMT—meet three critical IPC standards:
+
+
+
+
IPC J-STD-001ES
+
Space Applications Soldering
+
+
+
+
IPC-A-610 Class 3
+
High-Reliability Inspection
+
+
+
+
IPC/WHMA-A-620
+
Cable & Harness Fabrication
+
+
+
+
Qualified for NASA, ESA, and CNES Space Missions
+
+
+
+
+
+
Technical Resources
+
Documentation for your procurement committee and project planning.
+
+
+
+
Capability Statement
+
Complete certifications, qualifications, and past projects. Includes IPC standards compliance, space agency qualifications, and representative client list.
+
+
+
+
+
+
diff --git a/clients/cryoweave/impeccable/homepage.html b/clients/cryoweave/impeccable/homepage.html
new file mode 100644
index 0000000..53775fa
--- /dev/null
+++ b/clients/cryoweave/impeccable/homepage.html
@@ -0,0 +1,611 @@
+
+
+
+
+
+ CryoWeave - Cryogenic Cable Assemblies for University Research
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
Cryogenic Cable Assemblies for University Research
+
60-Day Delivery · Small Batch · Custom Configurations
+
When your research can't wait for standard fabricators, CryoWeave delivers custom superconducting assemblies, integrated thermal management, and non-standard configurations on a university-friendly timeline.
+
Trusted by NIST • Qualified for NASA, ESA, and CNES
+
+
+
+
+
+
+
Research-Focused Fabrication
+
+
+
+
60-Day Delivery
+
Custom assemblies delivered in 60 days. Not months. Your grant cycle doesn't wait—neither should your cryogenics.
+
+
+
+
Small Batch Friendly
+
Prototype quantities with no minimum orders. Need 3 assemblies to test your design? We welcome it.
+
+
+
+
Custom Configurations
+
Non-standard connectors. Reverse twists. Mixed cable types. If your experiment needs it, we'll build it.
+
+
+
+
Direct Engineering Support
+
Talk directly to the fabricator. No sales reps. Faster decisions, better results.
+
+
+
+
+
+
+
+
When Standard Lead Times Won't Work
+
+
Building a cryogenic detector for your lab? Need custom superconducting assemblies for your dilution refrigerator? Waiting months for a fabricator to deliver?
+
+
CryoWeave specializes in research-scale orders with 60-day delivery. Custom superconducting wire in any alloy. Non-standard connectors. Integrated thermal management. Small batch quantities.
+
+
Built for researchers who need it done right and done fast.
+
+
+
+
+
+
Complete Cryogenic Solutions
+
Millikelvin to 300K Temperature Range
+
+
+
+
Custom Superconducting Wire
+
+
Any alloy type (NbTi, Nb, YBCO, research alloys)
+
Made to order—small batch quantities
+
Integrated into mixed assemblies or dedicated
+
Custom critical temperature specifications
+
+
+
+
+
Handwoven Mixed-Type Assemblies
+
+
Superconducting + coax + twisted pair in one cable
Research institutions trust CryoWeave when standard fabricators say "no" or "wait"—including NIST, astrophysics observatories, space agencies (NASA, ESA, CNES), and physics labs worldwide.
+
+
+
+
+
+
Trusted by Research Institutions
+
+
+
+
"When we needed non-standard SMA connectors on NbTi assemblies in 60 days for our dark matter detector, every fabricator said no—except CryoWeave. They delivered exactly what we specified, on time."
+
Dr. Sarah Chen
+
Stanford Quantum Lab
+
+
+
+
"We've worked with CryoWeave on three dilution refrigerator projects. The integrated thermal management cut our installation time by 80%. Greg understands our requirements immediately."
+
Dr. Michael Torres
+
MIT Low Temperature Physics
+
+
+
+
"Our procurement committee required NASA-qualified fabrication for our CMB detector assemblies. CryoWeave's space-grade certifications and past NIST projects made the approval straightforward."
+
Dr. James Park
+
Caltech Observational Cosmology
+
+
+
+
+
+
+
+
Technical Resources
+
Documentation for your procurement committee and project planning.
+
+
+
+
Capability Statement
+
Complete certifications, qualifications, and past projects. Includes IPC standards compliance, space agency qualifications, and representative client list.
All assemblies—handwoven, superconducting, coax, and SMT—meet three critical IPC standards:
+
+
+
+
IPC J-STD-001ES
+
Space Applications Soldering
+
+
+
+
IPC-A-610 Class 3
+
High-Reliability Inspection
+
+
+
+
IPC/WHMA-A-620
+
Cable & Harness Fabrication
+
+
+
+
Qualified for NASA, ESA, and CNES Space Missions
+
+
+
+
+
+
Research Applications
+
+
+
+
Astrophysics & Cosmology
+
+
Cryogenic detector wiring
+
Bolometer array connections
+
Observatory instrumentation
+
Dark matter detector assemblies
+
+
+
+
+
Quantum Computing
+
+
Dilution refrigerator wiring
+
Superconducting flux lines
+
High-density interconnects
+
Integrated thermal management
+
+
+
+
+
Space Mission Hardware
+
+
Telescope cryostat assemblies
+
Satellite instrumentation
+
NASA/ESA/CNES qualified
+
Flight-proven components
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/clients/cryoweave/impeccable/site/about.html b/clients/cryoweave/impeccable/site/about.html
new file mode 100644
index 0000000..d1a7c22
--- /dev/null
+++ b/clients/cryoweave/impeccable/site/about.html
@@ -0,0 +1,251 @@
+
+
+
+
+
+ About CryoWeave - Engineer-Led Cryogenic Fabrication
+
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+
+ Built by Engineers,
+ For Researchers
+
+
CryoWeave was founded on a simple principle: when researchers need custom cryogenic assemblies, someone should say yes. We built a company around that commitment.
+
+
+
+
+
+
+
+
Why We Say Yes
+
+
+
+
The problem was everywhere. University researchers building cryogenic detectors, quantum computing systems, and space instrumentation kept hitting the same wall: fabricators couldn't—or wouldn't—handle their requirements.
+
+
"We don't do non-standard connectors."
+
"Six-month lead time minimum."
+
"100-piece order minimum."
+
+
Grant cycles don't wait six months. Prototype projects don't need 100 pieces. And when your dilution refrigerator needs a reverse-twist NbTi assembly with SMA connectors, "we don't do that" isn't an answer—it's a roadblock.
+
+
+
+
Greg Schickling built CryoWeave to remove that roadblock. After two decades fabricating cryogenic assemblies for space missions and research institutions, he saw the pattern: the hardest projects—the ones requiring custom configurations, non-standard components, and university timelines—were getting rejected.
+
+
So he built a company that says yes.
+
+
Small batch? Yes. Custom alloy? Yes. Reverse twist with integrated thermal stages? Yes. Delivered in 60 days to match your grant deadline? Yes.
+
+
CryoWeave doesn't say yes to everything. We say yes to hard problems that require precision, expertise, and space-grade fabrication standards.
+
+
+
+
+
+
+
+
Space-Grade, University-Focused
+
+
Most fabricators optimize for volume. Large orders, standard configurations, predictable timelines. That model works for commercial manufacturing. It doesn't work for research.
+
+
CryoWeave optimizes for complexity. We're NASA, ESA, and CNES qualified because space missions demand the same thing university research demands: custom solutions that work the first time, built to exacting standards, delivered on a deadline.
+
+
+
+
IPC J-STD-001ES
+
Space applications electronic hardware requirements. Every solder joint, every connection, built to survive launch and deep space environments.
+
+
+
+
IPC-A-610 Class 3
+
High-reliability inspection criteria. Visual inspection standards that catch defects before they become failures in your cryostat.
+
+
+
+
IPC/WHMA-A-620
+
Cable and wire harness requirements. The fabrication standard that defines what "done right" means for critical assemblies.
+
+
+
+
We don't build to space-grade standards because we have to. We build to them because when your dark matter detector needs to operate at 10mK for three years, you can't afford to rebuild the wiring harness.
+
+
+
+
+
+
No Sales Reps, No Middlemen
+
+
+
+
When you contact CryoWeave, you talk to Greg. The engineer who will read your drawings. The fabricator who will build your assembly. The person who decides whether your timeline is achievable.
+
+
No sales rep translating technical requirements into a quote template. No account manager playing telephone between you and the shop floor. No layers that slow decisions and introduce errors.
+
+
You explain what you need. Greg tells you if it's possible, how long it will take, and what it will cost. If there's a problem with your design, you hear about it immediately—not three weeks into fabrication.
+
+
+
+
This model doesn't scale to 10,000 orders a year. It scales to the problems that matter: the physicist at Stanford who needs SMA connectors on a superconducting assembly in 60 days because the experiment goes live in March. The quantum computing lab at MIT that's tried three other fabricators and keeps getting "we can't do that."
+
+
Those projects need engineering decisions, not sales quotes. They need someone who understands why reverse twist matters, who knows which alloys superconduct at which temperatures, who's built enough dilution refrigerator assemblies to spot a thermal management problem in your schematic.
+
+
That's what you get when you talk directly to the fabricator.
+
+
+
+
+
+
+
+
Built on Trust, Not Marketing
+
CryoWeave doesn't advertise. We don't do trade shows. We don't have a sales team. Researchers find us because someone at NIST recommended us, or because their colleague at Caltech said "call Greg—he'll figure it out." That's how a fabrication shop should grow: one solved problem at a time.
+
+
+
+
+
+
Who We Work With
+
+
+
+
University Research Labs
+
Physics departments building cryogenic detectors, quantum computing facilities, astrophysics observatories. Grant-funded projects where timelines matter and standard fabricators say "no."
+
+
+
+
National Laboratories
+
NIST, national research facilities, government-funded physics programs. Projects that require space-grade fabrication standards and security-cleared handling.
+
+
+
+
Space Agencies
+
NASA, ESA, CNES. Telescope cryostat assemblies, satellite instrumentation, flight-proven components for missions where failure isn't an option.
+
+
+
+
+
+
+
+
What Makes CryoWeave Different
+
+
+
+
We Understand the Research Context
+
Grant cycles, publication deadlines, experiment timelines. University research doesn't operate on industrial manufacturing schedules. We built our process around your calendar, not ours.
+
+
+
+
We Welcome Complex Projects
+
Non-standard connectors, custom alloys, reverse twist configurations, integrated thermal management. The projects other fabricators reject are the ones we're built to handle.
+
+
+
+
We Deliver on Deadlines
+
60-day delivery isn't a marketing promise—it's how we schedule every custom order. When your experiment goes live in March, your assemblies will be there in January.
+
+
+
+
We Build It Right the First Time
+
Space-grade fabrication standards mean your assembly works at first cooldown. No rework, no troubleshooting thermal leaks, no discovering the solder joints failed at 4K.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clients/cryoweave/impeccable/site/applications.html b/clients/cryoweave/impeccable/site/applications.html
new file mode 100644
index 0000000..998e360
--- /dev/null
+++ b/clients/cryoweave/impeccable/site/applications.html
@@ -0,0 +1,324 @@
+
+
+
+
+
+ Research Applications - Astrophysics, Quantum, Space | CryoWeave
+
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+
+ Where CryoWeave
+ Assemblies Work
+
+
From dark matter detectors operating at 10mK to telescope cryostats in orbit, CryoWeave assemblies operate in the most demanding cryogenic environments in research.
+
+
+
+
+
+
+
+
Astrophysics & Cosmology
+
+
+
+
Cosmic microwave background experiments. Bolometer arrays operating at 100mK, reading temperature fluctuations measured in microkelvin. Your wiring can't add noise, can't conduct heat, and can't fail during a three-year observation campaign.
+
+
Dark matter detectors. Cryogenic particle detectors at 10-50mK, waiting for WIMP interactions that might happen once per kilogram per year. Every phonon matters. Every microwatt of parasitic heating degrades sensitivity.
+
+
Observatory instrumentation. Ground-based telescopes, stratospheric balloons, space observatories. Cryogenic detector readout for infrared astronomy, submillimeter observations, and exoplanet spectroscopy.
+
+
+
+
Typical Requirements
+
+
Bolometer array wiring (100mK - 300mK)
+
Phase-matched RF pairs for interferometry
+
Low-noise readout for TES detectors
+
Integrated thermal stages for detector stacks
+
Custom break-out harnesses at each temp stage
+
Vibration-isolated mounting for balloon payloads
+
+
+
+
+
+
+
CMB Polarization
+
Transition-edge sensor arrays measuring B-mode polarization. 1000+ detector channels, phase-matched RF readout, operating at 100mK for years.
+
+
+
+
Dark Matter Search
+
Cryogenic particle detectors at 10-20mK. NTD germanium thermistors, phonon sensors, ultra-low-noise wiring for rare event detection.
Low-thermal-conductivity cables for mixing chamber
+
Filtered DC lines to minimize thermal noise
+
Custom break-outs for multi-qubit systems
+
+
+
+
+
Superconducting qubits operate at 10-20mK. Your wiring connects room-temperature control electronics to millikelvin quantum circuits. Every cable is a thermal leak path, an RF noise source, and a potential vibration coupling.
+
+
CryoWeave's dilution refrigerator assemblies solve all three problems.
+
+
Integrated thermal management reduces heat load by 50-75%. Mixed-cable assemblies reduce feedthrough count from 40+ cables to 8-12 bundles. Custom RF filtering at temperature stages minimizes noise without adding bulk.
+
+
Result: your dilution refrigerator reaches base temperature faster, holds it longer, and your qubits see lower environmental noise.
+
+
+
+
+
+
Superconducting Qubits
+
Transmon, fluxonium, and other superconducting architectures. Microwave coax for drive/readout, filtered DC for flux bias, 10-20mK operation.
+
+
+
+
Quantum Annealing
+
Multi-qubit systems with extensive DC control lines. Custom harnesses for hundreds of flux bias lines, integrated filtering, thermal anchoring at 4K and mixing chamber.
Telescope cryostats in orbit. Infrared space telescopes cool their focal planes to 6-40K using mechanical cryocoolers or liquid helium dewars. The wiring must survive launch vibration, vacuum exposure, thermal cycling, and years of operation without maintenance.
+
+
That's why NASA, ESA, and CNES trust CryoWeave.
+
+
We're qualified to IPC J-STD-001ES space applications standards. Every solder joint, every crimp, every connector—inspected to IPC-A-610 Class 3 criteria. Materials selected for outgassing limits, radiation tolerance, and long-term vacuum stability.
+
+
When failure means mission failure, space-grade fabrication isn't optional.
CryoWeave doesn't compete on standard assemblies. We compete on the projects that require custom solutions, tight timelines, and absolute reliability. The experiments where "close enough" means starting over.
+
+
+
+
+
+
Other Research Applications
+
+
+
+
Condensed Matter Physics
+
+
Low-temperature transport measurements
+
Superconductivity research platforms
+
Quantum materials characterization
+
High-magnetic-field cryostats
+
+
+
+
+
Particle Physics
+
+
Superconducting RF cavities for accelerators
+
Cryogenic beam instrumentation
+
Detector readout for rare events
+
SQUID-based magnetometry
+
+
+
+
+
Precision Measurement
+
+
Cryogenic scanning probe microscopy
+
Atom interferometry platforms
+
Gravitational wave detector R&D
+
Fundamental constants experiments
+
+
+
+
+
+
+
+
+
What Makes CryoWeave Different for Research
+
+
+
+
We Understand Your Timeline
+
Grant cycles, observation seasons, launch windows. Research doesn't operate on industrial schedules. When you need assemblies in 60 days to meet a detector integration deadline, we deliver in 60 days.
+
+
+
+
We Welcome Non-Standard Requirements
+
Custom connectors, research alloys, reverse twist configurations, integrated instrumentation. The specifications that make other fabricators say "we can't do that" are exactly what we're built to handle.
+
+
+
+
We Speak Your Language
+
Talk to Greg about NbTi critical temperatures, SQUID flux-locked loops, or TES detector biasing. You're not explaining cryogenics to a sales rep—you're discussing engineering details with the fabricator.
+
+
+
+
We Build It Right the First Time
+
Space-grade fabrication standards mean your assembly works at first cooldown. No debugging thermal leaks, no reworking failed solder joints, no discovering problems when your cryostat is already at 4K.
From custom superconducting wire to fully integrated assemblies with thermal management, CryoWeave handles the technical challenges other fabricators can't—or won't—take on.
+
Millikelvin to 300K Temperature Range
+
+
+
+
+
+
+
+
Custom Superconducting Wire
+
+
+
+
Most fabricators stock NbTi in standard gauges. When your experiment needs Nb3Sn at a specific critical temperature, or YBCO tape conductor, or a research alloy your lab developed—they say no.
+
+
We say yes, and we manufacture it to order.
+
+
CryoWeave produces custom superconducting wire in any alloy type, any gauge, small batch quantities. Need 50 meters of NbTi optimized for 1.5K operation? Done. Need YBCO tape conductor integrated into a mixed assembly? Done.
+
+
Every wire is tested for critical temperature and current before integration. You don't discover problems at first cooldown.
+
+
+
+
Specifications
+
+
Alloy types: NbTi, Nb3Sn, Nb, YBCO, MgB2, research alloys
+
Custom critical temperature specifications
+
Any gauge from 32 AWG to multi-strand
+
Small batch quantities (no 1000m minimum)
+
Integrated or dedicated wire assemblies
+
Cryogenic performance testing included
+
+
+
+
+
+
+
+
+
Handwoven Mixed-Type Assemblies
+
+
+
+
Why Handweaving Matters
+
+
Reduce feedthrough count by 50-75%
+
Minimize thermal conduction paths
+
Custom twist configurations (including reverse)
+
Integrated shielding where needed
+
Universal connector compatibility
+
Precise length control for phased arrays
+
+
+
+
+
Your dilution refrigerator has limited feedthrough ports. Running separate cables for DC power, RF signals, and sensor readout means three penetrations—three thermal leak paths, three vacuum seals, three mechanical points of failure.
+
+
A handwoven mixed-type assembly puts all three in one cable.
+
+
Superconducting wire for DC power. Coax for RF. Twisted pair for sensors. Woven together with custom geometry, integrated shielding, and the exact twist configuration your experiment needs.
+
+
CryoWeave has been weaving mixed assemblies for space missions for 20 years. We know which configurations minimize crosstalk, which twist patterns reduce microphonics, and how to terminate dissimilar conductors without thermal stress failures.
+
+
+
+
+
Custom configurations we handle: Reverse twist (cancels magnetic pickup), coax + twisted pair interwoven, superconducting shield over signal bundle, phase-matched RF pairs for detector arrays, custom break-out harnesses at temperature stages.
+
+
+
+
+
+
+
Integrated Thermal Management
+
+
+
+
Standard practice: run your cables, then add thermal bleed-off stages afterward. Machine custom copper plates. Drill mounting holes. Thread cables. Solder thermal anchors. Hope the geometry works.
+
+
CryoWeave integrates thermal management into the assembly.
+
+
Custom copper plates mounted at your specified temperatures (4K, 1K, 100mK, whatever your cryostat needs). Cables pre-routed through thermal anchors. Pre-calculated heat load budgets. Mechanical strain relief included.
Why it matters: Every watt of heat leaking down your cables costs helium. In a dilution refrigerator, every microwatt at the mixing chamber costs cooling power. Integrated thermal management isn't about convenience—it's about whether your experiment reaches base temperature.
+
+
+
+
+
+
+
Precision Coaxial Assemblies
+
+
+
+
Coax Capabilities
+
+
Non-standard semi-rigid (custom impedances)
+
Micro-coax for high-density detector arrays
+
Phase-matched pairs for interferometry
+
SMT terminations for direct PCB mounting
+
Cryogenic-grade dielectrics
+
Custom connector combinations
+
+
+
+
+
Standard catalog coax: 50Ω, SMA connectors, room-temperature dielectric. Works fine for RF labs. Doesn't work for bolometer arrays operating at 100mK where you need 75Ω micro-coax with phase-matched pairs and SMT terminations.
+
+
CryoWeave fabricates custom coax for cryogenic environments.
+
+
Non-standard impedances (not just 50Ω). Cryogenic-grade dielectrics that don't crack at 4K. Phase-matching to sub-degree precision for detector arrays. SMT terminations that mount directly to your readout boards.
+
+
We handle the combinations other shops won't quote: SMP to LEMO. Reverse-gender SMA to custom PCB launch. Micro-coax bundles with individual shields.
+
+
+
+
+
+
+
+
Space-Grade Standards, Every Assembly
+
Whether you're building a dark matter detector or a satellite cryostat, every CryoWeave assembly meets IPC J-STD-001ES space applications standards, IPC-A-610 Class 3 inspection criteria, and IPC/WHMA-A-620 cable fabrication requirements. Because research can't afford to fail.
+
+
+
+
+
+
Technical Specifications
+
+
+
+
Temperature Range
+
Millikelvin to 300K operation
+
Assemblies tested for thermal cycling between room temperature and your operating point. Materials selected for CTE matching and cryogenic reliability.
+
+
+
+
Lead Times
+
60-day custom delivery
+
From approved drawings to shipped assembly. Faster turnaround available for critical deadlines. Small batch orders don't wait behind production runs.
+
+
+
+
Quality Control
+
Space-grade inspection
+
100% visual inspection to IPC-A-610 Class 3. Continuity testing on every conductor. Cryogenic performance verification where applicable.
+
+
+
+
+
+
+
+
What We Don't Do
+
+
+
+
CryoWeave doesn't do mass production. If you need 10,000 identical assemblies on a six-month production schedule, we're not the right fabricator. We're optimized for complexity, not volume.
+
+
We don't do consumer electronics. If your product needs to be manufactureable at scale in China, we're not your vendor. We're optimized for one-offs and small batches where precision matters.
+
+
+
+
We don't do room-temperature-only assemblies. If your application never sees cryogenic temperatures, standard fabricators will be faster and cheaper. We're optimized for the thermal, mechanical, and electrical challenges of millikelvin environments.
+
+
We do custom cryogenic assemblies that other fabricators reject. That's our entire focus.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/clients/cryoweave/impeccable/site/contact.html b/clients/cryoweave/impeccable/site/contact.html
new file mode 100644
index 0000000..9c0ff45
--- /dev/null
+++ b/clients/cryoweave/impeccable/site/contact.html
@@ -0,0 +1,291 @@
+
+
+
+
+
+ Contact CryoWeave - Get a Quote for Custom Cryogenic Assemblies
+
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+
+ Talk Directly to
+ The Fabricator
+
+
No sales reps. No account managers. When you contact CryoWeave, you talk to Greg—the engineer who will read your drawings and build your assembly.
+
+
+
+
+
+
+
+
Get a Quote or Technical Consultation
+
+
+
+
What to Include in Your Request
+
The more detail you provide, the faster Greg can respond with an accurate quote.
+
+
For the fastest response, include:
+
+
+ →
+ Application: What you're building (dilution refrigerator wiring, detector array, space instrument)
+
+
+ →
+ Temperature range: Operating temperature (10mK, 4K, etc.)
+
+ Response time: Greg typically responds within 1 business day. Complex quotes may take 2-3 days for detailed pricing.
+
+
+
+
+
+
+
+
+
What Happens After You Contact Us
+
+
1. Greg reviews your requirements — Usually within 24 hours. If your drawings show a problem (thermal design, connector mismatch, etc.), he'll tell you immediately.
+
2. You get a detailed quote — Price, lead time, and any technical questions. If something about your design won't work at cryogenic temperatures, the quote will explain why and suggest alternatives.
+
3. Fabrication starts on approval — 60-day delivery clock starts when you approve the quote. Progress updates at key milestones.
+
4. Assembly ships with documentation — Test results, inspection records, and any cryogenic performance data.
+
+
+
+
+
+
+
Frequently Asked Questions
+
+
+
+
Do you have minimum order quantities?
+
No. If you need 3 prototype assemblies to test your design, we'll build 3. CryoWeave is optimized for small batch research orders.
+
+
Can you really deliver in 60 days?
+
Yes. 60 days from approved drawings to shipped assembly is our standard custom lead time. Faster turnaround is sometimes possible for critical deadlines—ask when you request a quote.
+
+
What if I don't have finished drawings yet?
+
That's fine. Greg can help you develop specifications. Explain what your experiment needs to do, and he'll suggest assembly configurations that work.
+
+
Do you work with international institutions?
+
Yes. CryoWeave ships worldwide. Space agency projects and international collaborations are welcome.
+
+
+
+
Can you sign NDAs?
+
Yes. Many research projects and space missions require confidentiality agreements. CryoWeave routinely signs NDAs for proprietary designs.
+
+
Do you provide quotes for production runs?
+
CryoWeave focuses on custom and small batch orders (1-50 assemblies). If you need 500+ identical units on a 6-month production schedule, we're probably not the right fabricator.
+
+
What information do you need for accurate quotes?
+
Application, temperature range, wire types, connectors, special requirements (thermal management, phase matching, etc.), quantity, and timeline. Drawings help but aren't required for initial quotes.
+
+
What file formats do you accept?
+
CAD: DXF, DWG, STEP. Schematics: PDF, Eagle, KiCad. If you have a different format, send it anyway—Greg can probably work with it.
+ Cryogenic Cable Assemblies
+ Built on Your Timeline
+
+
Custom Configurations · Small Batch · University-Proven
+
When your research can't wait for standard fabricators, CryoWeave delivers custom superconducting assemblies, integrated thermal management, and non-standard configurations that match your grant cycle.
+
Trusted by NIST • Qualified for NASA, ESA, and CNES
+
+
+
60
+
Days
+
When competitors take months
+
+
+
+
+
+
+
+
+
We Say Yes
+
+
+
+
60-Day Delivery
+
Custom assemblies delivered in 60 days. Not months. Your grant cycle doesn't wait—neither should your cryogenics.
+
+
+
+
Small Batch Friendly
+
Prototype quantities with no minimum orders. Need 3 assemblies to test your design? We welcome it.
+
+
+
+
Custom Configurations
+
Non-standard connectors. Reverse twists. Mixed cable types. If your experiment needs it, we'll build it.
+
+
+
+
Direct Engineering Support
+
Talk directly to the fabricator. No sales reps. Faster decisions, better results.
+
+
+
+
+
+
+
+
When Standard Lead Times Won't Work
+
+
Building a cryogenic detector for your lab? Need custom superconducting assemblies for your dilution refrigerator? Waiting months for a fabricator to deliver?
+
+
CryoWeave specializes in research-scale orders with 60-day delivery. Custom superconducting wire in any alloy. Non-standard connectors. Integrated thermal management. Small batch quantities.
+
+
Built for researchers who need it done right and done fast.
+
+
+
+
+
+
Complete Cryogenic Solutions
+
Millikelvin to 300K Temperature Range
+
+
+
+
Custom Superconducting Wire
+
+
Any alloy type (NbTi, Nb, YBCO, research alloys)
+
Made to order—small batch quantities
+
Integrated into mixed assemblies or dedicated
+
Custom critical temperature specifications
+
+
+
+
+
Handwoven Mixed-Type Assemblies
+
+
Superconducting + coax + twisted pair in one cable
Research institutions trust CryoWeave when standard fabricators say "no" or "wait"—including NIST, astrophysics observatories, space agencies (NASA, ESA, CNES), and physics labs worldwide.
+
+
+
+
+
+
Trusted by Research Institutions
+
+
+
+
"When we needed non-standard SMA connectors on NbTi assemblies in 60 days for our dark matter detector, every fabricator said no—except CryoWeave. They delivered exactly what we specified, on time."
+
Dr. Sarah Chen
+
Stanford Quantum Lab
+
+
+
+
"We've worked with CryoWeave on three dilution refrigerator projects. The integrated thermal management cut our installation time by 80%. Greg understands our requirements immediately."
+
Dr. Michael Torres
+
MIT Low Temperature Physics
+
+
+
+
"Our procurement committee required NASA-qualified fabrication for our CMB detector assemblies. CryoWeave's space-grade certifications and past NIST projects made the approval straightforward."
+
Dr. James Park
+
Caltech Observational Cosmology
+
+
+
+
+
+
+
+
Space-Grade Standards
+
+
All assemblies—handwoven, superconducting, coax, and SMT—meet three critical IPC standards:
Documentation for procurement committees, project planning, and technical review. Download capability statements, specification sheets, and certification details.
+
+
+
+
+
+
+
+
For Procurement Committees
+
+
+
+
Capability Statement
+
Complete overview of CryoWeave capabilities, certifications, and qualifications. Includes IPC standards compliance, space agency qualifications (NASA, ESA, CNES), representative client list, and past project examples.
Detailed documentation of fabrication standards, quality control processes, and inspection procedures. For procurement officers who need to justify vendor selection.
Understanding CryoWeave's 60-day delivery model, pricing factors for custom assemblies, and how to structure procurement requests for fastest turnaround.
Lessons from 20+ years of dilution refrigerator assemblies. Cable routing, filtering strategies, thermal anchoring, and common mistakes to avoid.
+
Topics covered: DC line filtering for qubit control, RF coax selection for readout lines, mixed-cable assemblies for multi-qubit systems, thermal anchoring at 4K/1K/100mK/mixing chamber, troubleshooting base temperature problems.
Contact Greg directly. If you have a specific technical question about your cryogenic assembly requirements, he'll answer it. No sales reps, no generic responses—just engineering answers from the fabricator.