<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Tech With Intention Framework - Fashion Brand Technology Selection</title>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"/>
<link href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/css/all.min.css" rel="stylesheet"/>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Space Grotesk', 'Montserrat', sans-serif; background-color: #000; color: #fff; line-height: 1.6; }
:root { --primary-orange: #FF4500; --secondary-orange: #FF3300; --tertiary-orange: #FF6600; --neon-cyan: #0FF; --dark-overlay: rgba(0, 0, 0, 0.4); }
.hero { background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--tertiary-orange) 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--secondary-orange); opacity: 0.8; z-index: 1; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70%; background-color: var(--tertiary-orange); opacity: 0.6; z-index: 1; }
.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.hero h1 { font-size: 4rem; font-weight: 700; text-transform: uppercase; letter-spacing: -1px; text-shadow: 0 0 20px rgba(255,255,255,0.4); margin-bottom: 20px; line-height: 1.1; }
.hero h2 { font-size: 1.8rem; font-weight: 500; color: #0FF; text-shadow: 0 0 15px rgba(0,255,255,0.6); margin-bottom: 30px; font-family: 'Montserrat', sans-serif; }
.hero p { font-size: 1.3rem; margin-bottom: 40px; color: rgba(255,255,255,0.9); }
.neon-accent { height: 4px; width: 120px; background-color: var(--neon-cyan); box-shadow: 0 0 15px 2px rgba(0,255,255,0.7); border-radius: 3px; margin: 20px auto; }
.cta-button { display: inline-block; padding: 20px 50px; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: #000; background-color: var(--neon-cyan); border: none; border-radius: 8px; cursor: pointer; text-decoration: none; box-shadow: 0 0 30px rgba(0,255,255,0.6); transition: all 0.3s ease; letter-spacing: 1px; }
.cta-button:hover { box-shadow: 0 0 50px rgba(0,255,255,0.9); transform: translateY(-3px); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 20px; position: relative; }
.section-dark { background-color: #1a1a1a; }
.section-gradient { background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%); position: relative; }
.section-gradient::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 1; }
.section-gradient .container { position: relative; z-index: 10; }
.section-title { font-size: 3rem; font-weight: 700; text-transform: uppercase; letter-spacing: -1px; text-shadow: 0 0 20px rgba(255,255,255,0.4); margin-bottom: 60px; text-align: center; }
.section-subtitle { font-size: 1.5rem; color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,255,255,0.6); margin-bottom: 40px; text-align: center; font-family: 'Montserrat', sans-serif; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; margin-top: 60px; }
.content-box { border-left: 3px solid var(--neon-cyan); box-shadow: -5px 0 10px -5px rgba(0,255,255,0.5); background-color: var(--dark-overlay); backdrop-filter: blur(5px); padding: 30px; border-radius: 8px; transition: all 0.3s ease; }
.content-box:hover { box-shadow: -5px 0 20px -5px rgba(0,255,255,0.8); transform: translateX(5px); }
.content-box h3 { font-size: 1.8rem; color: var(--neon-cyan); margin-bottom: 15px; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.content-box p, .content-box ul { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.8; }
.content-box ul { list-style: none; padding-left: 0; }
.content-box ul li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.content-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--neon-cyan); font-weight: bold; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.feature-card { background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); border: 2px solid rgba(0,255,255,0.2); border-radius: 12px; padding: 40px 30px; text-align: center; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--neon-cyan); box-shadow: 0 0 30px rgba(0,255,255,0.3); transform: translateY(-10px); }
.feature-card i { font-size: 3rem; color: var(--neon-cyan); text-shadow: 0 0 20px rgba(0,255,255,0.8); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.feature-card p { font-size: 1rem; color: rgba(255,255,255,0.8); }
.framework-steps { display: flex; flex-direction: column; gap: 30px; margin-top: 60px; }
.step-item { display: flex; align-items: flex-start; background: rgba(0,0,0,0.4); backdrop-filter: blur(5px); padding: 30px; border-radius: 12px; border: 1px solid rgba(0,255,255,0.1); transition: all 0.3s ease; }
.step-item:hover { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0,255,255,0.3); }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange)); border: 3px solid var(--neon-cyan); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; flex-shrink: 0; margin-right: 25px; box-shadow: 0 0 15px rgba(0,255,255,0.5); }
.step-content h3 { font-size: 1.6rem; color: var(--neon-cyan); margin-bottom: 10px; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.step-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.pricing-box { background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); border: 3px solid var(--neon-cyan); border-radius: 16px; padding: 60px 40px; text-align: center; max-width: 600px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,255,255,0.3); }
.price-tag { font-size: 4rem; font-weight: 700; color: var(--neon-cyan); text-shadow: 0 0 20px rgba(0,255,255,0.8); margin: 20px 0; }
.price-old { font-size: 2rem; text-decoration: line-through; color: rgba(255,255,255,0.5); display: block; margin-bottom: 10px; }
.pricing-features { list-style: none; margin: 40px 0; text-align: left; }
.pricing-features li { padding: 12px 0; font-size: 1.1rem; color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.1); }
.pricing-features li i { color: var(--neon-cyan); margin-right: 12px; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.faq-item { background: rgba(0,0,0,0.4); backdrop-filter: blur(5px); border: 1px solid rgba(0,255,255,0.2); border-radius: 8px; padding: 25px 30px; margin-bottom: 20px; cursor: pointer; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0,255,255,0.2); }
.faq-question { font-size: 1.3rem; font-weight: 600; color: var(--neon-cyan); margin-bottom: 15px; text-shadow: 0 0 10px rgba(0,255,255,0.4); }
.faq-answer { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.8; }
.bio-section { display: flex; align-items: center; gap: 60px; background: rgba(0,0,0,0.4); backdrop-filter: blur(5px); padding: 60px; border-radius: 16px; border: 2px solid rgba(0,255,255,0.2); }
.bio-content h3 { font-size: 2rem; color: var(--neon-cyan); margin-bottom: 10px; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.bio-content h4 { font-size: 1.3rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; font-weight: 400; }
.bio-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 15px; }
.footer { background-color: #000; padding: 60px 20px 40px; text-align: center; border-top: 2px solid rgba(0,255,255,0.3); }
.footer-contact { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.footer-contact a { color: var(--neon-cyan); text-decoration: none; text-shadow: 0 0 10px rgba(0,255,255,0.6); }
.footer-contact a:hover { text-shadow: 0 0 20px rgba(0,255,255,0.9); }
.footer-copyright { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 30px; }
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.3rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .bio-section { flex-direction: column; text-align: center; }
    .step-item { flex-direction: column; text-align: center; }
    .step-number { margin: 0 auto 20px; }
    .cta-button { padding: 15px 35px; font-size: 1.1rem; }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.8s ease-out; }
.corner-accent-tl { position: absolute; top: 20px; left: 20px; width: 60px; height: 60px; border-top: 4px solid var(--neon-cyan); border-left: 4px solid var(--neon-cyan); border-radius: 12px; opacity: 0.4; box-shadow: 0 0 15px rgba(0,255,255,0.3); }
.corner-accent-br { position: absolute; bottom: 20px; right: 20px; width: 60px; height: 60px; border-bottom: 4px solid var(--neon-cyan); border-right: 4px solid var(--neon-cyan); border-radius: 12px; opacity: 0.4; box-shadow: 0 0 15px rgba(0,255,255,0.3); }
</style>
</head>
<body>
<section class="hero">
<div class="corner-accent-tl"></div>
<div class="corner-accent-br"></div>
<div class="hero-content animate-in">
<h1>Stop Wasting Money on Fashion Tech<br/>Your Team Won't Use</h1>
<div class="neon-accent"></div>
<h2>The proven 8-step framework that helps independent fashion brands select technology strategically—without the $50K mistakes.</h2>
<p>Before you invest in that PLM, ERP, or OMS system, you need to know your business's gaps. This framework shows you exactly how.</p>
<a href="https://www.luxorandfinch.com/tech-framework" class="cta-button">Get the Framework - $297</a>
<p style="margin-top: 20px; font-size: 1rem; color: rgba(255,255,255,0.7);">Includes: 12-Slide Presentation + Comprehensive Workbook</p>
</div>
</section>
<section class="section section-dark">
<div class="container">
<h2 class="section-title">Sound Familiar?</h2>
<div class="grid-3">
<div class="content-box">
<h3><i class="fas fa-dollar-sign"></i> Expensive Mistakes</h3>
<ul>
<li>Invested $10K-$50K in software your team never adopted</li>
<li>Bought tools that duplicate what you already have</li>
<li>Hidden costs ballooned 3x beyond the initial quote</li>
</ul>
</div>
<div class="content-box">
<h3><i class="fas fa-exclamation-triangle"></i> Implementation Failures</h3>
<ul>
<li>Beautiful demos but clunky real-world use</li>
<li>Tech doesn't integrate with your existing systems</li>
<li>Team resists using it because it doesn't fit their workflow</li>
</ul>
</div>
<div class="content-box">
<h3><i class="fas fa-question-circle"></i> Analysis Paralysis</h3>
<ul>
<li>Overwhelmed by vendor pitches and feature lists</li>
<li>Don't know which problems actually need tech solutions</li>
<li>Can't tell if you need PLM, ERP, OMS, or something else</li>
</ul>
</div>
</div>
<div style="text-align: center; margin-top: 60px;">
<p style="font-size: 1.5rem; color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,255,255,0.6); font-weight: 600;">The problem isn't the technology. It's choosing tech before understanding your business.</p>
</div>
</div>
</section>
<section id="pricing" class="section section-gradient">
<div class="container">
<h2 class="section-title">Choose Your Path to Smarter Tech Decisions</h2>
<div class="pricing-box">
<h3 style="font-size: 2rem; margin-bottom: 20px;">Complete Framework Package</h3>
<div>
<span class="price-old">$497</span>
<div class="price-tag">$297</div>
<p style="color: var(--neon-cyan); font-size: 1.2rem; margin-top: 10px;">Limited Time Launch Pricing</p>
</div>
<div class="neon-accent" style="margin: 30px auto;"></div>
<ul class="pricing-features">
<li><i class="fas fa-check"></i> 12-Slide Visual Presentation (PDF + PPTX)</li>
<li><i class="fas fa-check"></i> Comprehensive Notion Workbook (8,500+ words)</li>
<li><i class="fas fa-check"></i> 15+ Fillable Templates & Worksheets</li>
<li><i class="fas fa-check"></i> Technology Evaluation Scorecard</li>
<li><i class="fas fa-check"></i> Impact/Effort Matrix & 5 Whys Templates</li>
<li><i class="fas fa-check"></i> TCO Calculator & Risk Assessment Tools</li>
<li><i class="fas fa-check"></i> 6 Real-World Case Studies</li>
<li><i class="fas fa-check"></i> Sample Tech Stacks (3 Growth Stages)</li>
<li><i class="fas fa-check"></i> Lifetime Access & Updates</li>
</ul>
<a href="https://www.luxorandfinch.com/tech-framework" class="cta-button" style="width: 100%; display: block; margin: 30px 0;">Get Complete Access Now - $297</a>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<h3 style="font-size: 1.8rem; color: var(--neon-cyan); margin-bottom: 20px; text-shadow: 0 0 10px rgba(0,255,255,0.6);">Luxor and Finch LLC</h3>
<p style="font-size: 1.2rem; margin-bottom: 10px;">Jessica Couch, Founder</p>
<div class="footer-contact">
<p><i class="fas fa-envelope"></i> <a href="mailto:Jcouch@luxorandfinch.com">Jcouch@luxorandfinch.com</a></p>
<p><i class="fas fa-globe"></i> <a href="https://www.luxorandfinch.com">www.luxorandfinch.com</a></p>
</div>
<p class="footer-copyright">© 2026 Luxor and Finch LLC. All Rights Reserved.</p>
</div>
</footer>
</body>