@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
:root {
  --bg-primary: #09090b;
  --bg-secondary: #121214;
  --bg-tertiary: #18181b;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --border-color: #ffffff14;
  --border-hover: #ffffff26;
  --accent-color: #2563eb;
  --accent-glow: #2563eb66;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection {
  background: var(--text-primary);
  color: var(--bg-primary);
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  cursor: pointer;
  color: inherit;
  background: 0 0;
  border: none;
  font-family: inherit;
}
.glass-panel {
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  background: #18181b66;
  border-radius: 12px;
}
.text-gradient {
  background: linear-gradient(#fff 0%, #a1a1aa 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.glow-button {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 0 #fff0;
}
.glow-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px -5px #ffffff4d;
}
.secondary-button {
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  background-color: #0000;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s;
}
.secondary-button:hover {
  border-color: var(--border-hover);
  background-color: #ffffff0d;
}
.ambient-bg {
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, #17171a 0%, var(--bg-primary) 50%);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}
.grid-overlay {
  background-image: linear-gradient(90deg, #ffffff08 1px, #0000 1px), linear-gradient(#ffffff08 1px, #0000 1px);
  background-size: 40px 40px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(#000 0%, #0000 80%);
  mask-image: linear-gradient(#000 0%, #0000 80%);
}
.glow-orb {
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  filter: blur(40px);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translate(-50%);
}
.app-container {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}
.navbar {
  z-index: 100;
  border-bottom: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 4rem;
  transition: all 0.3s;
  display: flex;
  position: fixed;
  top: 0;
}
.navbar.scrolled {
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-color);
  background: #09090bcc;
  padding: 1rem 4rem;
}
.nav-brand {
  letter-spacing: -0.02em;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
}
.brand-logo {
  background: var(--text-primary);
  width: 28px;
  height: 28px;
  color: var(--bg-primary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.nav-links {
  align-items: center;
  gap: 2.5rem;
  display: flex;
}
.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-cta {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background-color: #0000;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-cta:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}
.hero {
  text-align: center;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  padding: 12rem 2rem 6rem;
  display: flex;
  position: relative;
}
.hero-badge {
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background: #ffffff0d;
  border-radius: 999px;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  display: flex;
}
.hero-badge span {
  color: var(--text-primary);
  font-weight: 600;
}
.hero-title {
  letter-spacing: -0.04em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}
.hero-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}
.hero-actions {
  gap: 1rem;
  display: flex;
}
.mockup-container {
  perspective: 1000px;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
  position: relative;
}
.mockup {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  transform: rotateX(5deg) scale(0.95);
  box-shadow: 0 25px 50px -12px #00000080, 0 0 0 1px #ffffff0d;
}
.mockup:hover {
  transform: rotateX(0) scale(1);
}
.mockup-header {
  border-bottom: 1px solid var(--border-color);
  background: #ffffff08;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 1.5rem;
  display: flex;
}
.mockup-dot {
  background: var(--border-hover);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.mockup-body {
  background: #0d0d0d;
  height: 600px;
  display: flex;
}
.mockup-sidebar {
  border-right: 1px solid var(--border-color);
  background: #ffffff05;
  width: 240px;
  padding: 1.5rem 1rem;
}
.mockup-sidebar-item {
  background: #ffffff08;
  border-radius: 6px;
  height: 32px;
  margin-bottom: 0.5rem;
}
.mockup-sidebar-item.active {
  background: #2563eb26;
  border: 1px solid #2563eb4d;
}
.mockup-content {
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  padding: 2rem;
  display: flex;
}
.mockup-row {
  border: 1px solid var(--border-color);
  background: #ffffff05;
  border-radius: 8px;
  height: 48px;
}
.features {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 4rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}
.section-subtitle {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}
.feature-card {
  border: 1px solid var(--border-color);
  background: #ffffff05;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: #ffffff0a;
  transform: translateY(-2px);
}
.feature-icon-wrapper {
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  color: var(--text-primary);
  background: #ffffff0d;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}
.feature-title {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-grid.visible .feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-grid.visible .feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-grid.visible .feature-card:nth-child(3) { transition-delay: 200ms; }
.feature-grid.visible .feature-card:nth-child(4) { transition-delay: 300ms; }
.feature-grid.visible .feature-card:nth-child(5) { transition-delay: 400ms; }
.feature-grid.visible .feature-card:nth-child(6) { transition-delay: 500ms; }
.footer {
  border-top: 1px solid var(--border-color);
  z-index: 10;
  background: #09090b80;
  margin-top: auto;
  padding: 4rem 4rem 2rem;
  position: relative;
}
.footer-content {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.footer-brand {
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
}
.footer-brand span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}
.footer-links {
  gap: 2rem;
  display: flex;
}
.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--text-primary);
}
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 4rem;
  }
  .features {
    padding: 4rem 2rem;
  }
}
@media (max-width: 768px) {
  /* Navbar: drop absolute positioning, use space-between + always blur on mobile */
  .navbar {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    position: fixed;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: #09090bcc;
    border-bottom-color: var(--border-color);
  }
  /* The centered wrapper div becomes a flex row that naturally takes up space */
  .navbar > div:first-child {
    flex: 1;
    justify-content: flex-start !important;
  }
  /* CTA becomes static, not absolute */
  .navbar > div:last-child {
    position: static !important;
    right: auto !important;
  }
  .nav-cta {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    white-space: nowrap;
  }
  .navbar.scrolled {
    padding: 0.75rem 1.5rem;
  }
  /* Hero */
  .hero {
    padding: 7rem 1.5rem 3rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  /* Waitlist form stacks vertically */
  .hero-actions {
    width: 100%;
  }
  .hero-actions form {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem !important;
  }
  .hero-actions input {
    min-width: unset !important;
    width: 100% !important;
  }
  .hero-actions button {
    width: 100%;
    justify-content: center;
  }
  /* Mockup: scale down drastically or hide on very small screens */
  .mockup-container {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
  .mockup-body {
    height: 280px;
  }
  .mockup-sidebar {
    width: 80px;
    padding: 1rem 0.5rem;
  }
  /* Features */
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .features {
    padding: 3rem 1.5rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  /* Footer */
  .footer {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .mockup-container {
    display: none;
  }
}
/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}