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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  min-height: 100vh;
}

.site-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

header {
  margin-bottom: 48px;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

header p {
  color: #888;
  margin-top: 6px;
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.card-soon {
  opacity: 0.45;
  cursor: default;
}

.card-icon {
  width: 48px;
  height: 48px;
}

.card-text h2 {
  font-size: 1.05rem;
  font-weight: 600;
}

.card-text p {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: #aaa;
  font-size: 1.1rem;
}
