* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #7b3cff 0, #050014 55%, #020008 100%);
  color: #f5ecff;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 0, 20, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-tag {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav a {
  margin-left: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #e3d4ff;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

main {
  flex: 1;
  padding: 2rem 1.5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  margin-bottom: 2.5rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hero-text p {
  font-size: 0.98rem;
  max-width: 540px;
  color: #d7c8ff;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
}

button {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#connectButton {
  background: #b794ff;
  color: #120020;
}

.secondary-btn {
  background: transparent;
  color: #e9dbff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.card-section {
  margin-top: 2rem;
}

.card-section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.9rem;
}

.card {
  background: rgba(10, 0, 30, 0.9);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.list-card {
  min-height: 80px;
  display: flex;
  align-items: center;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d7c8ff;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  opacity: 0.8;
  font-style: italic;
}

#createForm {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

#createForm label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 0.25rem;
}

#createForm input {
  padding: 0.4rem 0.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(230, 215, 255, 0.3);
  background: rgba(5, 0, 20, 0.8);
  color: #f5ecff;
  font-size: 0.85rem;
}

#createLaunchButton {
  margin-top: 0.4rem;
  width: fit-content;
}

.tools-list {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #ddceff;
  line-height: 1.5;
}

.footer {
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 0, 20, 0.9);
}
And in app.js just put this for now:

js
Copy code
function scrollToSection(id) {
  const el = document.getElementById(id);
  if (el) el.scrollIntoView({ behavior: "smooth" });
}

document.getElementById("connectButton").addEventListener("click", () => {
  alert("Wallet connect will be wired in after we deploy the contracts.");
});