/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  background-color: #1a1a1a;
  color: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  z-index: 2;
}

/* Special styling for waitlist section with footer */
.waitlist-with-footer {
  min-height: 100vh;
  display: block;
  padding: 4rem 0 0 0;
  position: relative;
}

/* Background Animations */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.geometric-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(107, 78, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(107, 78, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(107, 78, 255, 0.15),
    rgba(142, 92, 255, 0.08)
  );
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  top: 65%;
  right: 15%;
  animation-delay: 7s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  left: 25%;
  animation-delay: 14s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  top: 35%;
  right: 35%;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translateY(-40px) translateX(30px) scale(1.1);
    opacity: 0.7;
  }
  66% {
    transform: translateY(30px) translateX(-25px) scale(0.9);
    opacity: 0.5;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #4d4d4d;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #6b4eff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #fafafa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #6b4eff;
}

.cta-nav {
  background: #6b4eff;
  color: #fafafa !important;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: #8e5cff;
  color: #fafafa !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 100px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8e5cff 0%, #6b4eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  color: #b3b3b3;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #6b4eff;
  color: #fafafa;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #8e5cff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(107, 78, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.arrow-down {
  width: 24px;
  height: 24px;
  border-right: 2px solid #6b4eff;
  border-bottom: 2px solid #6b4eff;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Problem/Solution Section */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem,
.solution {
  padding: 2rem;
}

.problem h2,
.solution h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6b4eff;
}

.problem p,
.solution p {
  color: #b3b3b3;
  margin-bottom: 1rem;
}

.problem ul,
.solution ul {
  list-style: none;
  margin-top: 1rem;
}

.problem li,
.solution li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #cccccc;
}

.problem li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff4a5e;
}

.solution li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2dca73;
}

/* Section Titles */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #6b4eff;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #4d4d4d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #6b4eff;
  box-shadow: 0 10px 30px rgba(107, 78, 255, 0.25);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  color: #6b4eff;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #6b4eff;
}

.feature-card p {
  color: #b3b3b3;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: #6b4eff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin-right: 2rem;
  flex-shrink: 0;
  color: #fafafa;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #6b4eff;
}

.timeline-content p {
  color: #b3b3b3;
}

/* Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.screenshot-placeholder {
  text-align: center;
}

.screenshot-placeholder img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid rgba(107, 78, 255, 0.3);
}

.screenshot-placeholder p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #6b4eff;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  border: 1px solid #4d4d4d;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: #6b4eff;
  background: #2a2a2a;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(107, 78, 255, 0.25);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #6b4eff;
  color: #fafafa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6b4eff;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fafafa;
}

.price span {
  font-size: 1rem;
  color: #b3b3b3;
}

.pricing-card ul {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 0;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #4d4d4d;
  color: #cccccc;
}

.pricing-cta {
  background: #6b4eff;
  color: #fafafa;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 2rem;
}

.pricing-cta:hover {
  background: #8e5cff;
}

/* Founder Section */
.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6b4eff;
}

.founder-text p {
  color: #b3b3b3;
  margin-bottom: 1rem;
}

.founder-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #6b4eff;
}

.stat-label {
  font-size: 0.9rem;
  color: #b3b3b3;
}

.founder-image img {
  width: 100%;
  border-radius: 15px;
}

/* Status Visual */
.status-visual {
  background: linear-gradient(
    135deg,
    rgba(107, 78, 255, 0.1),
    rgba(142, 92, 255, 0.05)
  );
  border-radius: 20px;
  border: 1px solid rgba(107, 78, 255, 0.2);
  padding: 2rem;
}

.status-visual h3 {
  color: #6b4eff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.status-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(107, 78, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(107, 78, 255, 0.1);
  transition: all 0.3s ease;
}

.status-item:hover {
  background: rgba(107, 78, 255, 0.1);
  border-color: rgba(107, 78, 255, 0.3);
  transform: translateY(-2px);
}

.status-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.status-content h4 {
  color: #6b4eff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.status-content p {
  color: #b3b3b3;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsiveness for status visual */
@media (max-width: 768px) {
  .status-visual {
    padding: 1.5rem;
  }

  .status-item {
    padding: 1.25rem;
  }

  .status-icon {
    font-size: 1.75rem;
  }

  .status-content h4 {
    font-size: 1rem;
  }

  .status-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .status-visual {
    padding: 1rem;
  }

  .status-visual h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .status-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .status-icon {
    font-size: 1.5rem;
  }
}

/* Waitlist Section */
.waitlist-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 8rem; /* Increased from 2rem to push content down */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh; /* Add minimum height to center content vertically */
}

.waitlist-form {
  margin: 2rem 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input {
  padding: 1rem;
  border: 2px solid #4d4d4d;
  border-radius: 10px;
  background: #2a2a2a;
  color: #fafafa;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #6b4eff;
}

.form-group input::placeholder {
  color: #4d4d4d;
}

.submit-btn {
  background: #6b4eff;
  color: #fafafa;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #8e5cff;
}

.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b3b3b3;
}

.benefit-icon {
  font-size: 1.2rem;
}

/* Integrated Footer - positioned at bottom with constrained width */
.integrated-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  border-top: 1px solid #4d4d4d;
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6b4eff;
}

.footer-brand p {
  color: #b3b3b3;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #6b4eff;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: #b3b3b3;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #6b4eff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4d4d4d;
  color: #4d4d4d;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-links.mobile-open {
    left: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .section {
    padding: 2rem 0;
    min-height: auto;
  }

  /* Mobile: Use flexbox layout instead of absolute positioning */
  .waitlist-with-footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    position: relative;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 2rem;
    min-height: 100vh;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .split-content,
  .founder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .problem,
  .solution {
    padding: 1.5rem;
  }

  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .feature-card {
    padding: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card {
    padding: 2rem;
  }

  .founder-stats {
    justify-content: center;
    gap: 2rem;
  }

  .waitlist-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }

  .timeline-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .container {
    padding: 0 1rem;
  }

  body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }

  .waitlist-with-footer {
    padding: 2rem 0; /* Remove any horizontal padding */
  }

  .nav-container {
    padding: 0 1rem; /* Match the container padding */
  }

  .scroll-indicator {
    display: none;
  }

  .waitlist-content {
    margin: 0 auto;
    padding-top: 1rem;
    flex-grow: 1; /* Take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Mobile footer: Use normal flow instead of absolute positioning */
  .integrated-footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    border-top: 1px solid #4d4d4d;
    padding: 2rem 1rem;
    background: #1a1a1a;
    margin-top: 3rem; /* Add space above footer */
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .integrated-footer {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .waitlist-with-footer {
    padding: 2rem 0;
  }
}
