* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: white;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background */
.background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb, #f3f4f6);
}

.wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

@keyframes wave-flow {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(100px) translateY(-50px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.wave-1 {
  animation: wave-flow 20s ease-in-out infinite;
}

/* Container */
.container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: white;
}

/* Header */
header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

.logo-link {
  display: inline-block;
}

.logo {
  height: 5rem;
  margin: 0 auto;
  transition: all 2000ms ease-out;
  transform: scale(15);
}

.logo.loaded {
  transform: scale(1);
}

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 0 1rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .app-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.app-card {
  display: block;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-0.5rem);
}

.app-icon-wrapper {
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: white;
  transition: all 0.3s ease;
}

.app-card:hover .app-icon-wrapper {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

/* Wave Section */
.wave-section {
  position: relative;
  width: 100%;
  padding-bottom: 5rem;
  background: #ffffff;
}

.wave-image {
  width: 100%;
  height: auto;
  opacity: 0.9;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.cta-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cta-box {
  max-width: 48rem;
  width: 100%;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-heading {
  font-size: 1.875rem;
  font-weight: 300;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(to right, #1f2937, #4b5563);
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* Footer */
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 2rem;
  text-align: center;
}

.copyright-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.copyright-text {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
}
