diff --git a/index.html b/index.html
new file mode 100644
index 0000000..1729f61
--- /dev/null
+++ b/index.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+ faebits | Pixel Landing Page
+
+
+
+
+
+
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..5fc47e7
--- /dev/null
+++ b/script.js
@@ -0,0 +1,4 @@
+// Basic interactivity
+document.addEventListener('DOMContentLoaded', () => {
+ console.log('faebits landing page initialized');
+});
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..fe411ca
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,20 @@
+/* Base Styles */
+:root {
+ --primary: #f39c12;
+ --secondary: #2c3e50;
+ --bg: #ecf0f1;
+ --text: #333;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Courier New', Courier, monospace;
+ background-color: var(--bg);
+ color: var(--text);
+ line-height: 1.6;
+}