/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.logo:hover {
  color: #f0f0f0;
  transform: translateY(-1px);
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
}

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

.nav-links a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main content */
main {
  /* margin-top: 80px; */
  /* Account for fixed navbar */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.125rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

/* Apps Section */
.apps {
  padding: 4rem 0;
  background-color: #0a0a0a;
}

.apps h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
}

.apps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.app-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #2a2a2a;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: #3a3a3a;
  background-color: #1f1f1f;
}

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

.app-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.app-card p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.app-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.app-features span {
  background-color: #ffffff;
  color: #000000;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #ffffff;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-item .icon {
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: #000000;
  color: #888888;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

footer a {
  font-size: 12px;
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: #ffffff;
}

/* Privacy Section */
.privacy {
  padding: 2rem 0 2rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
}

.privacy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.privacy h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-align: start;
}

.privacy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-align: start;
}

.privacy h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: start;
}

.privacy h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: start;
}

.privacy p {
  font-size: 1rem;
  color: #cccccc;
  max-width: 100%;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 1;
  text-align: start;
}

.privacy a {
  font-size: 1rem;
  color: #cccccc;
  z-index: 1;
  text-align: start;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.privacy a:hover {
  color: #ffffff;
}

.privacy ul {
  text-align: start;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  color: #cccccc;
  font-size: 1rem;
}

.privacy ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.privacy ul li strong {
  color: #dddddd
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  .container {
    max-width: 800px;
    padding: 0 2rem;
  }

  .navbar .container {
    padding: 0 2rem;
  }

  .logo {
    font-size: 1.5rem;
  }

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

  .hero {
    padding: 6rem 0;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
  }

  .cta-button {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }

  .apps {
    padding: 6rem 0;
  }

  .apps h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .apps-grid {
    max-width: 800px;
    gap: 2rem;
  }

  .app-card {
    padding: 3rem;
    border-radius: 20px;
  }

  .app-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .app-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .app-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .app-features {
    gap: 0.75rem;
  }

  .app-features span {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .contact {
    padding: 6rem 0;
  }

  .contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .contact p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
  }

  .contact-info {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .contact-item {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  footer {
    padding: 3rem 0;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .privacy {
    padding: 3rem 0;
  }

  .privacy h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .privacy h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .privacy h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .privacy h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .privacy p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .privacy a {
    font-size: 1.25rem;
  }

  .privacy ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }

  .privacy ul li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.125rem;
    gap: 0.5rem;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    gap: 1rem;
  }

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fade-in animations for app cards */
.app-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #2a2a2a;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.app-card:nth-child(1) {
  animation-delay: 0.2s;
}

.app-card:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: #3a3a3a;
  background-color: #1f1f1f;
}