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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
  padding: 60px 40px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

header h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 15px;
  color: #000000;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  letter-spacing: -0.01em;
}

.search-section {
  display: flex;
  gap: 15px;
  margin: 0 auto 60px;
  max-width: 700px;
}

.search-section input,
.search-section button {
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

#featureSearch {
  flex: 1;
  padding: 18px 24px;
  border: 2px solid #000000;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  background: #ffffff;
}

#featureSearch:focus {
  outline: none;
  border-width: 3px;
}

#featureSearch::placeholder {
  color: #999999;
}

#searchBtn {
  padding: 18px 40px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#searchBtn:hover {
  background: #333333;
  transform: translateY(-2px);
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card {
  background: #000000;
  color: #ffffff;
  padding: 40px;
  border-radius: 0;
  text-align: center;
  transition: transform 0.2s;
}

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

.card-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card .count {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.card .description {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 400;
}

.featured-section {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 0;
  margin-bottom: 40px;
  border: 2px solid #000000;
}

.featured-section h2 {
  margin-bottom: 30px;
  color: #000000;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.features-list {
  display: grid;
  gap: 15px;
}

.feature-item {
  padding: 25px;
  background: #ffffff;
  border-radius: 0;
  border: 2px solid #000000;
  transition: all 0.2s;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 #000000;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-link {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.feature-link a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 8px;
}

.feature-link a:hover {
  color: #666666;
}

.baseline-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.baseline-badge.newly {
  background: #ffffff;
  color: #000000;
}

small {
  color: #666666;
  font-size: 0.85rem;
  font-weight: 400;
}

.search-results {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 0;
  border: 2px solid #000000;
}

.search-results h2 {
  margin-bottom: 30px;
  color: #000000;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
