@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary: #4a3c5c;
  --secondary: #6b5b95;
  --accent: #e4d3e6;
  --background: #f8f8f9;
  --text: #0f1010;
  --text-light: #6b7280;
  --white: #ffffff;
  --success: #4caf50;
  --shadow-sm: 0 2px 8px rgba(74, 60, 92, 0.08);
  --shadow-md: 0 4px 16px rgba(74, 60, 92, 0.12);
  --shadow-lg: 0 8px 32px rgba(74, 60, 92, 0.16);
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.logo-text {
  font-family: 'HK Grotesk', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.header {
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  opacity: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-talent {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.01em;
}

.main {
  flex: 1;
  padding: 4rem 0;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 400;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.app-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.app-card.coming-soon {
  opacity: 0;
}

.app-card.coming-soon:hover {
  transform: translateY(-4px);
}

.app-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.app-icon .material-icons {
  font-size: 48px;
  color: var(--white);
}

.app-card.coming-soon .app-icon {
  background: linear-gradient(135deg, var(--accent), var(--text-light));
}

.app-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.app-description {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.app-contributor {
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  border-radius: 8px;
  width: 100%;
}

.app-contributor strong {
  color: var(--primary);
  font-weight: 600;
}

.app-button {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

.app-button:hover:not(:disabled) {
  background: var(--secondary);
  transform: translateX(4px);
}

.app-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.app-button .material-icons {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.app-button:hover:not(:disabled) .material-icons {
  transform: translateX(4px);
}

.footer {
  background: var(--primary);
  padding: 2rem 0;
  margin-top: auto;
  opacity: 0;
}

.footer-content {
  text-align: center;
}

.footer-text {
  color: var(--white);
  font-size: 0.9375rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .logo-text,
  .logo-talent {
    font-size: 1.25rem;
  }

  .logo-icon {
    height: 48px;
  }

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

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

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

  .app-card {
    padding: 2rem;
  }

  .main {
    padding: 3rem 0;
  }

  .hero {
    margin-bottom: 3rem;
  }
}

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

  .header {
    padding: 1rem 0;
  }

  .logo-container {
    gap: 0.35rem;
  }

  .logo-text,
  .logo-talent {
    font-size: 1.125rem;
  }

  .logo-icon {
    height: 40px;
  }

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

  .app-icon {
    width: 64px;
    height: 64px;
  }

  .app-icon .material-icons {
    font-size: 36px;
  }

  .app-name {
    font-size: 1.25rem;
  }

  .app-button {
    width: 100%;
    justify-content: center;
  }
}
