:root {
  --jade-primary: #4ade80;
  --jade-secondary: #22c55e;
  --jade-tertiary: #16a34a;
  --jade-dark: #15803d;
  --jade-light: #86efac;
  --jade-pale: rgba(134, 239, 172, 0.1);
  --text-primary: #ecfdf5;
  --text-secondary: rgba(134, 239, 172, 0.8);
  --surface-glass: rgba(34, 197, 94, 0.15);
  --surface-glass-border: rgba(74, 222, 128, 0.3);
  --font-family: "Hubot Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000;
}

.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(74, 222, 128, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 197, 94, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(22, 163, 74, 0.2) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
  animation: jade-flow 30s ease-in-out infinite;
}

.gradient-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
      45deg,
      transparent 0px,
      rgba(74, 222, 128, 0.03) 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      rgba(34, 197, 94, 0.02) 1px,
      transparent 2px
    );
  animation: pattern-drift 45s linear infinite;
}

#hero {
  background: none;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      ellipse at 30% 40%,
      rgba(74, 222, 128, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    );
  animation: hero-drift 35s ease-in-out infinite;
  z-index: 1;
}

@keyframes hero-drift {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes jade-flow {
  0%,
  100% {
    background: radial-gradient(
        circle at 20% 50%,
        rgba(74, 222, 128, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(34, 197, 94, 0.2) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 40% 80%,
        rgba(22, 163, 74, 0.2) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
  }
  25% {
    background: radial-gradient(
        circle at 60% 30%,
        rgba(134, 239, 172, 0.25) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 10% 70%,
        rgba(74, 222, 128, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 10%,
        rgba(34, 197, 94, 0.15) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #1e293b, #0f172a, #334155);
  }
  50% {
    background: radial-gradient(
        circle at 80% 70%,
        rgba(22, 163, 74, 0.2) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 30% 10%,
        rgba(134, 239, 172, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 70% 90%,
        rgba(74, 222, 128, 0.2) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #334155, #1e293b, #0f172a);
  }
  75% {
    background: radial-gradient(
        circle at 40% 60%,
        rgba(34, 197, 94, 0.25) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 30%,
        rgba(22, 163, 74, 0.2) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 20% 20%,
        rgba(74, 222, 128, 0.3) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #0f172a, #334155, #1e293b);
  }
}

@keyframes pattern-drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-100px, 100px) rotate(360deg);
  }
}

header {
  padding: 1.5rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
}

#logo-img {
  width: 40px;
  height: 40px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--jade-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(
    90deg,
    var(--jade-primary),
    var(--jade-secondary)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--jade-primary);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

main {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

#hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--jade-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.app-store-btn,
.google-play-btn {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--jade-primary),
    var(--jade-secondary)
  );
  border: none;
  border-radius: 25px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.app-store-btn::before,
.google-play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.app-store-btn:hover,
.google-play-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, var(--jade-light), var(--jade-primary));
}

.app-store-btn:hover::before,
.google-play-btn:hover::before {
  left: 100%;
}

.glass-card {
  background: var(--surface-glass);
  border: 2px solid var(--surface-glass-border);
  border-radius: 32px;
  padding: 3rem;
  margin-top: 5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px 0 rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(134, 239, 172, 0.2);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--jade-light),
    var(--jade-primary),
    var(--jade-secondary),
    var(--jade-tertiary)
  );
  border-radius: 34px;
  z-index: -1;
  opacity: 0.6;
  animation: border-glow 15s ease-in-out infinite;
}

@keyframes border-glow {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: rotate(180deg);
  }
}

#features h2,
#philosophy h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature {
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  padding: 1rem;
  border-radius: 25px;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(74, 222, 128, 0.1) 0%,
    transparent 70%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: jade-pulse 8s ease-in-out infinite;
}

.feature:hover::before {
  opacity: 1;
}

@keyframes jade-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.1;
  }
}

.feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--jade-pale);
  transition: all 0.4s ease;
  filter: saturate(0.8) brightness(1.1);
}

.feature img:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--jade-primary);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
  filter: saturate(1) brightness(1.2);
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature p {
  color: var(--text-secondary);
  line-height: 1.6;
}

#philosophy .philosophy-content {
  max-width: 800px;
  margin: 0 auto;
}

#philosophy h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

#philosophy p {
  line-height: 1.7;
  color: var(--text-secondary);
}

footer {
  text-align: center;
  padding: 5rem 2rem 2rem;
  color: var(--text-secondary);
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

/* Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Waitlist Section Styles */
#waitlist {
  text-align: center;
  margin-top: 5rem;
}

#waitlist h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--jade-primary),
    var(--jade-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--jade-light);
}

.waitlist-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  margin-bottom: 4rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  align-items: center;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--jade-pale);
  border-radius: 25px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: var(--text-secondary);
}

.email-input:focus {
  border-color: var(--jade-primary);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
  transform: translateY(-2px);
}

.waitlist-btn {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--jade-primary),
    var(--jade-secondary)
  );
  border: none;
  border-radius: 25px;
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
  white-space: nowrap;
}

.waitlist-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, var(--jade-light), var(--jade-primary));
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  opacity: 0.8;
}

.waitlist-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid var(--jade-pale);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 222, 128, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  border-color: var(--jade-primary);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.benefit:hover::before {
  left: 100%;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--jade-light);
  font-weight: 600;
}

.benefit p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 1rem;
}

/* Responsive Design for Waitlist */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }

  .email-input {
    width: 100%;
  }

  .waitlist-btn {
    width: 100%;
  }

  .waitlist-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #waitlist h2 {
    font-size: 2.2rem;
  }

  .waitlist-content h3 {
    font-size: 1.6rem;
  }
}

/* Enhanced Hero Section Styles */
.hero-tagline {
  font-size: 1.4rem;
  color: var(--jade-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jade-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Features Section */
.section-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.feature-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail {
  font-size: 0.9rem;
  color: var(--jade-light);
  background: rgba(74, 222, 128, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  border: 1px solid var(--jade-pale);
}

/* How It Works Section */
#how-it-works {
  margin-top: 6rem;
  padding: 4rem 0;
}

#how-it-works h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding: 2rem;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid var(--jade-pale);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.15);
  border-color: var(--jade-primary);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: linear-gradient(
    135deg,
    var(--jade-primary),
    var(--jade-secondary)
  );
  color: #0f172a;
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--jade-light);
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
#testimonials {
  margin-top: 6rem;
}

#testimonials h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid var(--jade-pale);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 222, 128, 0.15);
  border-color: var(--jade-primary);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--jade-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--jade-pale);
}

.name {
  font-weight: 600;
  color: var(--jade-light);
}

/* Values Section */
#values {
  margin-top: 6rem;
  padding: 4rem 0;
}

#values h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.value {
  text-align: center;
  padding: 2rem;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid var(--jade-pale);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.15);
  border-color: var(--jade-primary);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--jade-light);
  font-weight: 600;
}

.value p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Enhanced Philosophy Section */
.philosophy-highlights {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight {
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid var(--jade-pale);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.1);
  border-color: var(--jade-primary);
}

.highlight h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--jade-light);
  font-weight: 600;
}

.highlight p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.founder-quote {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(74, 222, 128, 0.08);
  border: 2px solid var(--jade-pale);
  border-radius: 25px;
  border-left: 6px solid var(--jade-primary);
  position: relative;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 3rem;
  color: var(--jade-primary);
  opacity: 0.4;
  font-family: Georgia, serif;
}

.founder-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.founder-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--jade-light);
}

/* Enhanced Waitlist Section */
.waitlist-intro {
  font-size: 1.3rem !important;
  margin-bottom: 2rem !important;
}

.waitlist-timeline {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.timeline-item {
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid var(--jade-pale);
  border-radius: 20px;
}

.timeline-date {
  display: block;
  font-weight: 700;
  color: var(--jade-primary);
  margin-bottom: 0.5rem;
}

.timeline-event {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.waitlist-stats {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.waitlist-stats .stat {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid var(--jade-pale);
  border-radius: 20px;
  padding: 1.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  main {
    max-width: 95%;
  }

  .glass-card {
    padding: 2.5rem;
  }
}

@media (max-width: 968px) {
  .hero-stats {
    gap: 2rem;
  }

  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .philosophy-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav ul.mobile-open {
    right: 0;
  }

  nav ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
  }

  nav ul.mobile-open li {
    opacity: 1;
    transform: translateY(0);
  }

  nav a {
    font-size: 1.5rem;
    padding: 1rem;
  }

  /* Header */
  header {
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
  }

  /* Main content */
  main {
    padding: 1rem;
    margin-top: 80px;
  }

  /* Hero section */
  #hero {
    padding: 4rem 1rem 3rem;
    min-height: 70vh;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .stat {
    min-width: 200px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* Buttons */
  .app-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .app-store-btn,
  .google-play-btn {
    width: 100%;
    max-width: 280px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  /* Sections */
  .glass-card {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
    border-radius: 25px;
  }

  /* Typography */
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 2.2rem !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  .section-intro {
    font-size: 1.1rem;
  }

  /* Features */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature {
    padding: 1.5rem 1rem;
  }

  .feature img {
    height: 180px;
  }

  /* Process steps */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    padding: 1.5rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial {
    padding: 2rem 1.5rem;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value {
    padding: 1.5rem;
  }

  /* Philosophy */
  .philosophy-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight {
    padding: 1.5rem;
  }

  .founder-quote {
    padding: 2rem 1.5rem;
  }

  /* Waitlist */
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }

  .email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
  }

  .waitlist-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .waitlist-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit {
    padding: 1.5rem;
  }

  #waitlist h2 {
    font-size: 2.2rem;
  }

  .waitlist-content h3 {
    font-size: 1.6rem;
  }

  .waitlist-timeline {
    gap: 1.5rem;
    flex-direction: column;
  }

  .waitlist-stats {
    gap: 2rem;
    flex-direction: column;
  }

  /* Footer */
  footer {
    padding: 3rem 1rem 2rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .logo {
    font-size: 1.3rem;
  }

  #logo-img {
    width: 35px;
    height: 35px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .glass-card {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  .app-store-btn,
  .google-play-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .feature img {
    height: 160px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .benefit-icon,
  .value-icon {
    font-size: 2rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .testimonial::before {
    font-size: 3rem;
  }

  .founder-quote::before {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .philosophy-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .waitlist-timeline {
    gap: 1.5rem;
  }

  .waitlist-stats {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

/* Touch-friendly improvements */
.touch-device .app-store-btn:hover,
.touch-device .google-play-btn:hover,
.touch-device .waitlist-btn:hover,
.touch-device .error-btn:hover {
  transform: none; /* Disable hover animations on touch devices */
}

.touch-device .feature:hover,
.touch-device .benefit:hover,
.touch-device .value:hover,
.touch-device .step:hover,
.touch-device .testimonial:hover {
  transform: none; /* Disable hover animations on touch devices */
}

/* Improve button tap targets */
@media (max-width: 768px) {
  button,
  .app-store-btn,
  .google-play-btn,
  .waitlist-btn,
  .error-btn {
    min-height: 44px; /* Minimum touch target size */
    min-width: 44px;
  }

  nav a {
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
