diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000..d83d1c8
Binary files /dev/null and b/CNAME differ
diff --git a/README.md b/README.md
index dbb7156..95ab7bf 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,7 @@
-# wheattoast11.github.io
\ No newline at end of file
+# Intuition Labs LLC Website
+
+Official website for Intuition Labs LLC, showcasing our AI strategy and implementation services.
+
+## Contact
+
+For questions or support, contact: tdesai1994@gmail.com
\ No newline at end of file
diff --git a/assets/css/style.css b/assets/css/style.css
new file mode 100644
index 0000000..8953caf
--- /dev/null
+++ b/assets/css/style.css
@@ -0,0 +1,234 @@
+:root {
+ --background: #030303;
+ --text: #e0e0e0;
+ --accent: #0ff;
+ --depth: rgba(0, 255, 255, 0.03);
+ --glass: rgba(255, 255, 255, 0.015);
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Inter', sans-serif;
+}
+
+body {
+ background: linear-gradient(135deg, #030303, #050505);
+ color: var(--text);
+ line-height: 1.5;
+ font-size: 13px;
+ font-weight: 300;
+ min-height: 100vh;
+ overflow-x: hidden;
+}
+
+.content {
+ max-width: 900px;
+ margin: 0 auto;
+ padding: 4rem 2rem;
+}
+
+header {
+ margin-bottom: 6rem;
+ transform: translateY(20px);
+ animation: fadeUp 0.8s ease forwards;
+}
+
+h1 {
+ font-size: 2rem;
+ font-weight: 200;
+ letter-spacing: -0.5px;
+ color: var(--text);
+ position: relative;
+ display: inline-block;
+}
+
+h1::after {
+ content: '';
+ position: absolute;
+ bottom: -8px;
+ left: 0;
+ width: 30px;
+ height: 1px;
+ background: var(--accent);
+ opacity: 0.5;
+}
+
+main {
+ margin-top: 2rem;
+}
+
+.tagline {
+ font-size: 0.9rem;
+ color: var(--text);
+ opacity: 0.7;
+ font-weight: 300;
+ margin-top: 1.5rem;
+ max-width: 600px;
+ line-height: 1.6;
+}
+
+.section {
+ margin: 4rem 0;
+ padding-left: 2rem;
+ position: relative;
+ opacity: 0;
+ transform: translateY(20px);
+}
+
+.section::before {
+ content: '/';
+ position: absolute;
+ left: 0;
+ color: var(--accent);
+ opacity: 0.5;
+}
+
+.section h2 {
+ font-size: 1.2rem;
+ letter-spacing: -0.5px;
+ color: var(--text);
+ margin-bottom: 1.5rem;
+ font-weight: 300;
+}
+
+.grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin: 2rem 0;
+}
+
+.item {
+ background: var(--glass);
+ -webkit-backdrop-filter: blur(10px);
+ backdrop-filter: blur(10px);
+ border: 1px solid var(--depth);
+ padding: 1.5rem;
+ transition: all 0.3s ease;
+}
+
+.item:hover {
+ transform: translateY(-5px);
+ border-color: rgba(0, 255, 255, 0.1);
+ background: var(--depth);
+}
+
+.item h3 {
+ font-size: 0.9rem;
+ font-weight: 400;
+ margin-bottom: 0.8rem;
+ color: var(--accent);
+}
+
+.tech-list {
+ list-style: none;
+ margin: 1rem 0;
+}
+
+.tech-list li {
+ position: relative;
+ padding-left: 1rem;
+ margin: 0.5rem 0;
+ font-size: 0.85rem;
+}
+
+.tech-list li::before {
+ content: '/';
+ position: absolute;
+ left: 0;
+ color: var(--accent);
+ opacity: 0.5;
+}
+
+.contact {
+ margin-top: 6rem;
+ display: flex;
+ align-items: center;
+ gap: 2rem;
+ flex-wrap: wrap;
+}
+
+.link {
+ display: inline-block;
+ color: var(--text);
+ text-decoration: none;
+ font-size: 0.8rem;
+ position: relative;
+ opacity: 0.7;
+ transition: all 0.3s ease;
+}
+
+.link:hover {
+ opacity: 1;
+ color: var(--accent);
+}
+
+.link::before {
+ content: '/';
+ position: absolute;
+ left: -1rem;
+ color: var(--accent);
+ opacity: 0.5;
+}
+
+.schedule-btn {
+ background: transparent;
+ border: 1px solid var(--accent);
+ color: var(--accent);
+ padding: 0.8rem 1.5rem;
+ font-size: 0.8rem;
+ font-weight: 400;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ font-family: 'Inter', sans-serif;
+ position: relative;
+ overflow: hidden;
+}
+
+.schedule-btn::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: -100%;
+ width: 100%;
+ height: 100%;
+ background: var(--accent);
+ opacity: 0.1;
+ transition: all 0.3s ease;
+}
+
+.schedule-btn:hover {
+ color: var(--text);
+ border-color: var(--accent);
+}
+
+.schedule-btn:hover::before {
+ left: 0;
+}
+
+@keyframes fadeUp {
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+@media (max-width: 768px) {
+ .content {
+ padding: 2rem 1rem;
+ }
+ .grid {
+ grid-template-columns: 1fr;
+ }
+ .contact {
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 1rem;
+ }
+ .schedule-btn {
+ width: 100%;
+ text-align: center;
+ }
+}
\ No newline at end of file
diff --git a/assets/js/main.js b/assets/js/main.js
new file mode 100644
index 0000000..4bbd238
--- /dev/null
+++ b/assets/js/main.js
@@ -0,0 +1,11 @@
+const sections = document.querySelectorAll('.section');
+const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+}, { threshold: 0.1 });
+
+sections.forEach(section => observer.observe(section));
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..5235143
--- /dev/null
+++ b/index.html
@@ -0,0 +1,76 @@
+
+
+
+
+
+ Intuition Labs LLC
+
+
+
+
+
+
+
+
+
+ Experience & Expertise
+
+
+
Enterprise AI Strategy / Google
+
+ - Architected first Enterprise Gen AI GTM for VC-backed customers
+ - Pioneered LLM-powered sales enablement systems
+ - Led Cloud-wide tech stack transformation (PM/PgM)
+ - 30k+ hours annual productivity improvement
+
+
+
+
Industry Transformation / ZS
+
+ - Global PMI for largest ag-sci merger (60+ countries)
+ - COVID response strategy for MRNA vaccine manufacturers
+ - Enterprise systems architecture across industries
+ - Performance management for mega-cap enterprises
+
+
+
+
+
+
+ Services
+
+
+
Strategic AI Innovation
+
+ - Enterprise AI Implementation Strategy
+ - LLM & Agent System Architecture
+ - GTM Strategy Development
+ - Complex System Integration
+
+
+
+
Technical Implementation
+
+ - Custom AI Agent Development
+ - Advanced Prompt Engineering
+ - Multi-modal System Design
+ - Process Automation & Optimization
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file